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:
7381506
)
ADd support for the new varargs instructions
author
Chris Lattner
<sabre@nondot.org>
Sat, 18 Oct 2003 05:56:52 +0000
(
05:56
+0000)
committer
Chris Lattner
<sabre@nondot.org>
Sat, 18 Oct 2003 05:56:52 +0000
(
05:56
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9225
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Transforms/Scalar/SCCP.cpp
patch
|
blob
|
history
diff --git
a/lib/Transforms/Scalar/SCCP.cpp
b/lib/Transforms/Scalar/SCCP.cpp
index 9134bf81b1d5947d398d5934d72d6b63fc1e0516..301d1ce325f2ee50284b6e4f0875f875abc0d644 100644
(file)
--- a/
lib/Transforms/Scalar/SCCP.cpp
+++ b/
lib/Transforms/Scalar/SCCP.cpp
@@
-209,7
+209,8
@@
private:
}
void visitUnwindInst (TerminatorInst &I) { /*returns void*/ }
void visitAllocationInst(Instruction &I) { markOverdefined(&I); }
- void visitVarArgInst (Instruction &I) { markOverdefined(&I); }
+ void visitVANextInst (Instruction &I) { markOverdefined(&I); }
+ void visitVAArgInst (Instruction &I) { markOverdefined(&I); }
void visitFreeInst (Instruction &I) { /*returns void*/ }
void visitInstruction(Instruction &I) {