diff options
author | Adrian Prantl <aprantl@apple.com> | 2017-11-03 21:55:03 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2017-11-03 21:55:03 +0000 |
commit | 261ac8b23cd628fd244709427a0f59d5f4d144c4 (patch) | |
tree | 17fec48ba6790218dbebf7808c295b33cf4a0544 /llvm/lib/Transforms/Utils/Local.cpp | |
parent | 36528c2a9b3d37d6692de5738697598abfb5d9c8 (diff) | |
download | bcm5719-llvm-261ac8b23cd628fd244709427a0f59d5f4d144c4.tar.gz bcm5719-llvm-261ac8b23cd628fd244709427a0f59d5f4d144c4.zip |
Invoke salvageDebugInfo from CodeGenPrepare's SinkCast()
This preserves the debug info for the cast operation in the original location.
rdar://problem/33460652
Reapplied r317340 with the test moved into an ARM-specific directory.
llvm-svn: 317375
Diffstat (limited to 'llvm/lib/Transforms/Utils/Local.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/Local.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Utils/Local.cpp b/llvm/lib/Transforms/Utils/Local.cpp index 8c643c93ec4..cb7978f76aa 100644 --- a/llvm/lib/Transforms/Utils/Local.cpp +++ b/llvm/lib/Transforms/Utils/Local.cpp @@ -1366,7 +1366,7 @@ void llvm::salvageDebugInfo(Instruction &I) { return MetadataAsValue::get(I.getContext(), ValueAsMetadata::get(V)); }; - if (isa<BitCastInst>(&I)) { + if (isa<BitCastInst>(&I) || isa<IntToPtrInst>(&I)) { findDbgValues(DbgValues, &I); for (auto *DVI : DbgValues) { // Bitcasts are entirely irrelevant for debug info. Rewrite the dbg.value |