diff options
author | Chad Rosier <mcrosier@apple.com> | 2011-08-31 23:49:05 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2011-08-31 23:49:05 +0000 |
commit | 17847ae7576af029f65d8036aae193d5470aef86 (patch) | |
tree | fab66321ae1f6e6f96a1f0bbc52db87e98cea479 /llvm/lib/Target/ARM/ARMFastISel.cpp | |
parent | b93cd18a828166574e483baa10a93c4f603c2e47 (diff) | |
download | bcm5719-llvm-17847ae7576af029f65d8036aae193d5470aef86.tar.gz bcm5719-llvm-17847ae7576af029f65d8036aae193d5470aef86.zip |
Fixup for functions that return a bool.
llvm-svn: 138918
Diffstat (limited to 'llvm/lib/Target/ARM/ARMFastISel.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/ARMFastISel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/ARM/ARMFastISel.cpp b/llvm/lib/Target/ARM/ARMFastISel.cpp index 8f7447558cb..390cd92cd6f 100644 --- a/llvm/lib/Target/ARM/ARMFastISel.cpp +++ b/llvm/lib/Target/ARM/ARMFastISel.cpp @@ -1328,7 +1328,7 @@ bool ARMFastISel::SelectSIToFP(const Instruction *I) { unsigned Opc; if (Ty->isFloatTy()) Opc = ARM::VSITOS; else if (Ty->isDoubleTy()) Opc = ARM::VSITOD; - else return 0; + else return false; unsigned ResultReg = createResultReg(TLI.getRegClassFor(DstVT)); AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(Opc), @@ -1354,7 +1354,7 @@ bool ARMFastISel::SelectFPToSI(const Instruction *I) { Type *OpTy = I->getOperand(0)->getType(); if (OpTy->isFloatTy()) Opc = ARM::VTOSIZS; else if (OpTy->isDoubleTy()) Opc = ARM::VTOSIZD; - else return 0; + else return false; // f64->s32 or f32->s32 both need an intermediate f32 reg. unsigned ResultReg = createResultReg(TLI.getRegClassFor(MVT::f32)); |