diff options
author | Gabor Greif <ggreif@gmail.com> | 2010-07-28 10:57:28 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2010-07-28 10:57:28 +0000 |
commit | 30ae792f0682ace2f794c6db3f3cb6ab657670a6 (patch) | |
tree | f95b343395e6bce78fb0c66ce9ee6429eaa7c819 | |
parent | b0686ea808ceb77a16eb728252f3a2a64d4c2caa (diff) | |
download | external_llvm-30ae792f0682ace2f794c6db3f3cb6ab657670a6.zip external_llvm-30ae792f0682ace2f794c6db3f3cb6ab657670a6.tar.gz external_llvm-30ae792f0682ace2f794c6db3f3cb6ab657670a6.tar.bz2 |
simplify
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109578 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Analysis/CaptureTracking.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Analysis/CaptureTracking.cpp b/lib/Analysis/CaptureTracking.cpp index 0478258..90eae20 100644 --- a/lib/Analysis/CaptureTracking.cpp +++ b/lib/Analysis/CaptureTracking.cpp @@ -69,7 +69,7 @@ bool llvm::PointerMayBeCaptured(const Value *V, switch (I->getOpcode()) { case Instruction::Call: case Instruction::Invoke: { - CallSite CS = CallSite::get(I); + CallSite CS(I); // Not captured if the callee is readonly, doesn't return a copy through // its return value and doesn't unwind (a readonly function can leak bits // by throwing an exception or not depending on the input value). |