projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5d0c794
)
Return false instead of 0.
author
Jakub Staszak
<kubastaszak@gmail.com>
Sun, 17 Feb 2013 18:35:25 +0000
(18:35 +0000)
committer
Jakub Staszak
<kubastaszak@gmail.com>
Sun, 17 Feb 2013 18:35:25 +0000
(18:35 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175402
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Target/X86/X86FastISel.cpp
patch
|
blob
|
history
diff --git
a/lib/Target/X86/X86FastISel.cpp
b/lib/Target/X86/X86FastISel.cpp
index 7f230ff571845fa1c24b3a4870680e2928d5969f..509095c61a1fb372243a68792b504423d104bff0 100644
(file)
--- a/
lib/Target/X86/X86FastISel.cpp
+++ b/
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.