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:
e696b35
)
SCCP doesn't actually preserve the CFG. It will delete and insert terminator
author
Nick Lewycky
<nicholas@mxc.ca>
Fri, 21 Jan 2011 08:38:09 +0000
(08:38 +0000)
committer
Nick Lewycky
<nicholas@mxc.ca>
Fri, 21 Jan 2011 08:38:09 +0000
(08:38 +0000)
instructions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123973
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 b9340c709934dc1d46aa0cbd4e3d32d7911d0843..c82e929b364eaa3a8abbfd026cfbab1c6a84b1a9 100644
(file)
--- a/
lib/Transforms/Scalar/SCCP.cpp
+++ b/
lib/Transforms/Scalar/SCCP.cpp
@@
-1606,10
+1606,6
@@
namespace {
// algorithm, and return true if the function was modified.
//
bool runOnFunction(Function &F);
-
- virtual void getAnalysisUsage(AnalysisUsage &AU) const {
- AU.setPreservesCFG();
- }
};
} // end anonymous namespace