We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70ced5e commit 74e3b78Copy full SHA for 74e3b78
llvm/tools/llvm-ir2vec/llvm-ir2vec.cpp
@@ -92,8 +92,12 @@ class IR2VecTool {
92
93
OS << '\n' << OpcStr << ' ' << TypeStr << ' ';
94
95
- LLVM_DEBUG(I.print(dbgs()); dbgs() << "\n");
96
- LLVM_DEBUG(I.getType()->print(dbgs()); dbgs() << " Type\n");
+ LLVM_DEBUG({
+ I.print(dbgs());
97
+ dbgs() << "\n";
98
+ I.getType()->print(dbgs());
99
+ dbgs() << " Type\n";
100
+ });
101
102
for (const Use &U : I.operands())
103
OS << Vocabulary::getVocabKeyForOperandKind(
0 commit comments