diff options
author | Devang Patel <dpatel@apple.com> | 2011-05-04 23:58:50 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2011-05-04 23:58:50 +0000 |
commit | 0f18d97fd16a4735817327e58222eca717aa8271 (patch) | |
tree | a22ffea8f33976a0d8e70978b8ee7fca7440ac4f | |
parent | a922ba7edcc27d5c9dcf54fe8813297b702b01dd (diff) | |
download | external_llvm-0f18d97fd16a4735817327e58222eca717aa8271.zip external_llvm-0f18d97fd16a4735817327e58222eca717aa8271.tar.gz external_llvm-0f18d97fd16a4735817327e58222eca717aa8271.tar.bz2 |
Set debug loc for new instructions.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130895 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/Scalar/GVN.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Transforms/Scalar/GVN.cpp b/lib/Transforms/Scalar/GVN.cpp index efecb97..c47fae1 100644 --- a/lib/Transforms/Scalar/GVN.cpp +++ b/lib/Transforms/Scalar/GVN.cpp @@ -952,12 +952,12 @@ static Value *GetLoadValueForLoad(LoadInst *SrcVal, unsigned Offset, IntegerType::get(LoadTy->getContext(), NewLoadSize*8); DestPTy = PointerType::get(DestPTy, cast<PointerType>(PtrVal->getType())->getAddressSpace()); - + Builder.SetCurrentDebugLocation(SrcVal->getDebugLoc()); PtrVal = Builder.CreateBitCast(PtrVal, DestPTy); LoadInst *NewLoad = Builder.CreateLoad(PtrVal); NewLoad->takeName(SrcVal); NewLoad->setAlignment(SrcVal->getAlignment()); - + DEBUG(dbgs() << "GVN WIDENED LOAD: " << *SrcVal << "\n"); DEBUG(dbgs() << "TO: " << *NewLoad << "\n"); @@ -2118,7 +2118,7 @@ bool GVN::performPRE(Function &F) { VN.add(Phi, ValNo); addToLeaderTable(ValNo, Phi, CurrentBlock); - + Phi->setDebugLoc(CurInst->getDebugLoc()); CurInst->replaceAllUsesWith(Phi); if (Phi->getType()->isPointerTy()) { // Because we have added a PHI-use of the pointer value, it has now |