diff options
Diffstat (limited to 'llvm/lib/Transforms/Scalar/SCCP.cpp')
| -rw-r--r-- | llvm/lib/Transforms/Scalar/SCCP.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Transforms/Scalar/SCCP.cpp b/llvm/lib/Transforms/Scalar/SCCP.cpp index 63ce5125087..a28155260ee 100644 --- a/llvm/lib/Transforms/Scalar/SCCP.cpp +++ b/llvm/lib/Transforms/Scalar/SCCP.cpp @@ -515,6 +515,7 @@ void SCCP::OperandChangedState(User *U) { // to prove whether a value is constant and whether blocks are used. // bool opt::DoSCCP(Method *M) { + if (M->isExternal()) return false; SCCP S(M); return S.doSCCP(); } |

