From: Owen Anderson Date: Sat, 7 Aug 2010 00:20:35 +0000 (+0000) Subject: Don't attempt the PRE inline asm calls, since we don't value number them yet. Fixes... X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=5015b3417fcf5b415fa9a1e5b111ea6f8e96fbfa;p=oota-llvm.git Don't attempt the PRE inline asm calls, since we don't value number them yet. Fixes PR7835. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110489 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/Scalar/GVN.cpp b/lib/Transforms/Scalar/GVN.cpp index 42afd6d5dbc..81cbc4e2127 100644 --- a/lib/Transforms/Scalar/GVN.cpp +++ b/lib/Transforms/Scalar/GVN.cpp @@ -2111,6 +2111,11 @@ bool GVN::performPRE(Function &F) { CurInst->mayReadFromMemory() || CurInst->mayHaveSideEffects() || isa(CurInst)) continue; + + // We don't currently value number ANY inline asm calls. + if (CallInst *CallI = dyn_cast(CurInst)) + if (CallI->isInlineAsm()) + continue; uint32_t ValNo = VN.lookup(CurInst);