summaryrefslogtreecommitdiff
path: root/include/llvm/Analysis
diff options
context:
space:
mode:
authorMatthijs Kooijman <matthijs@stdin.nl>2008-06-16 13:13:08 +0000
committerMatthijs Kooijman <matthijs@stdin.nl>2008-06-16 13:13:08 +0000
commit0a7413dad84887bee51f20d7a5f1c4c1c7bb4c1e (patch)
treeb019fe02dc5d0c06c6b0b5cab970a9cf917f112d /include/llvm/Analysis
parentd47e6aeb93a783e5209d7b32816398599200f446 (diff)
downloadllvm-0a7413dad84887bee51f20d7a5f1c4c1c7bb4c1e.tar.gz
llvm-0a7413dad84887bee51f20d7a5f1c4c1c7bb4c1e.tar.bz2
llvm-0a7413dad84887bee51f20d7a5f1c4c1c7bb4c1e.tar.xz
Pass around Instruction* instead of Instruction& in FindInsertedValue and friends.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52318 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis')
-rw-r--r--include/llvm/Analysis/ValueTracking.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Analysis/ValueTracking.h b/include/llvm/Analysis/ValueTracking.h
index df59c703a5..1dc1468209 100644
--- a/include/llvm/Analysis/ValueTracking.h
+++ b/include/llvm/Analysis/ValueTracking.h
@@ -58,7 +58,7 @@ namespace llvm {
Value *FindInsertedValue(Value *V,
const unsigned *idx_begin,
const unsigned *idx_end,
- Instruction &InsertBefore);
+ Instruction *InsertBefore);
} // end namespace llvm
#endif