summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorJakub Staszak <kubastaszak@gmail.com>2013-02-17 18:35:25 +0000
committerJakub Staszak <kubastaszak@gmail.com>2013-02-17 18:35:25 +0000
commit74010cd9c215d75bb5de51884bb5966040b6a349 (patch)
tree9a9b2e6487ccf9d8492b078e816bf80218230eac /llvm/lib
parentfb9ea4e6594eac083d7eb12e96f92ed19fb0a355 (diff)
downloadbcm5719-llvm-74010cd9c215d75bb5de51884bb5966040b6a349.tar.gz
bcm5719-llvm-74010cd9c215d75bb5de51884bb5966040b6a349.zip
Return false instead of 0.
llvm-svn: 175402
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/Target/X86/X86FastISel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/X86FastISel.cpp b/llvm/lib/Target/X86/X86FastISel.cpp
index 7f230ff5718..509095c61a1 100644
--- a/llvm/lib/Target/X86/X86FastISel.cpp
+++ b/llvm/lib/Target/X86/X86FastISel.cpp
@@ -726,7 +726,7 @@ bool X86FastISel::X86SelectRet(const Instruction *I) {
// Don't handle popping bytes on return for now.
if (X86MFInfo->getBytesToPopOnReturn() != 0)
- return 0;
+ return false;
// fastcc with -tailcallopt is intended to provide a guaranteed
// tail call optimization. Fastisel doesn't know how to do that.
OpenPOWER on IntegriCloud