From: Dan Gohman Date: Wed, 26 May 2010 22:00:10 +0000 (+0000) Subject: Stackrestore is not a load. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=749be11f4daf859c53638112b8f0620a503ed0cc;p=oota-llvm.git Stackrestore is not a load. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@104752 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/Lint.cpp b/lib/Analysis/Lint.cpp index 9345a246053..a19e13ef177 100644 --- a/lib/Analysis/Lint.cpp +++ b/lib/Analysis/Lint.cpp @@ -285,11 +285,6 @@ void Lint::visitCallSite(CallSite CS) { visitMemoryReference(I, CS.getArgument(0), 0, 0, MemRef::Read | MemRef::Write); break; - - case Intrinsic::stackrestore: - visitMemoryReference(I, CS.getArgument(0), 0, 0, - MemRef::Read); - break; } }