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:
9fdac90
)
Couple of changes that Dan mentioned for llvm.stackprotector fast-isel.
author
Eric Christopher
<echristo@apple.com>
Thu, 18 Mar 2010 21:58:33 +0000
(21:58 +0000)
committer
Eric Christopher
<echristo@apple.com>
Thu, 18 Mar 2010 21:58:33 +0000
(21:58 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98881
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 4a39bd51672e39c12877eaab2a2fb52c44b6da11..5d3edbb9f9aa0b0e7d52764364e4ba5f482ae0ab 100644
(file)
--- a/
lib/Target/X86/X86FastISel.cpp
+++ b/
lib/Target/X86/X86FastISel.cpp
@@
-1177,8
+1177,8
@@
bool X86FastISel::X86VisitIntrinsicCall(IntrinsicInst &I) {
X86AddressMode AM;
if (!X86SelectAddress(Slot, AM)) return false;
-
X86FastEmitStore(PtrTy, Op1, AM)
;
- UpdateValueMap(&I, getRegForValue(Op1));
+
if (!X86FastEmitStore(PtrTy, Op1, AM)) return false
;
+
return true;
}
case Intrinsic::objectsize: {