Skip to content

Commit

Permalink
Return false instead of 0.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175402 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
Jakub Staszak committed Feb 17, 2013
1 parent 5d0c794 commit d61932b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Target/X86/X86FastISel.cpp
Expand Up @@ -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.
Expand Down

0 comments on commit d61932b

Please sign in to comment.