diff options
author | Chris Lattner <sabre@nondot.org> | 2001-11-04 08:08:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-11-04 08:08:34 +0000 |
commit | 8e7f4091695aad705f84398ede1fccc3796b1fad (patch) | |
tree | 4eb5828e7a59ff372babf99cd90f9c972950fbc9 /lib/Transforms/Instrumentation/TraceValues.cpp | |
parent | b96939519b4e2852e8578cc03cddb8f94b23f819 (diff) |
Minor method rename
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1119 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Instrumentation/TraceValues.cpp')
-rw-r--r-- | lib/Transforms/Instrumentation/TraceValues.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Instrumentation/TraceValues.cpp b/lib/Transforms/Instrumentation/TraceValues.cpp index 3547b298c1..06c8438f26 100644 --- a/lib/Transforms/Instrumentation/TraceValues.cpp +++ b/lib/Transforms/Instrumentation/TraceValues.cpp @@ -311,7 +311,7 @@ InsertLoadInst(StoreInst* storeInst, BasicBlock::iterator &BBI) { LoadInst* loadInst = new LoadInst(storeInst->getPtrOperand(), - storeInst->getIndexVec()); + storeInst->getIndices()); BBI = bb->getInstList().insert(BBI, loadInst) + 1; return loadInst; } |