[PATCH] D139579: [WebAssembly] Print DEBUG_VALUE once for target indices
Heejin Ahn via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 9 10:55:07 PST 2022
aheejin updated this revision to Diff 481691.
aheejin added a comment.
Delete the test
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D139579/new/
https://reviews.llvm.org/D139579
Files:
llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
Index: llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
===================================================================
--- llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
+++ llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
@@ -1179,8 +1179,6 @@
}
case MachineOperand::MO_TargetIndex: {
OS << "!target-index(" << Op.getIndex() << "," << Op.getOffset() << ")";
- // NOTE: Want this comment at start of line, don't emit with AddComment.
- AP.OutStreamer->emitRawComment(OS.str());
break;
}
case MachineOperand::MO_Register:
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D139579.481691.patch
Type: text/x-patch
Size: 554 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20221209/0c71e4c0/attachment.bin>
More information about the llvm-commits
mailing list