From 0d47399167eee87711f5c93a3f36801c7b6a6774 Mon Sep 17 00:00:00 2001 From: Matt Arsenault Date: Sat, 21 Dec 2019 15:20:46 -0500 Subject: [PATCH] GlobalISel: Update syntax in debug printing Physical register names now start with $, not % --- llvm/lib/CodeGen/GlobalISel/RegisterBankInfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/CodeGen/GlobalISel/RegisterBankInfo.cpp b/llvm/lib/CodeGen/GlobalISel/RegisterBankInfo.cpp index 3fcc552..a917361 100644 --- a/llvm/lib/CodeGen/GlobalISel/RegisterBankInfo.cpp +++ b/llvm/lib/CodeGen/GlobalISel/RegisterBankInfo.cpp @@ -444,7 +444,7 @@ void RegisterBankInfo::applyDefaultMapping(const OperandsMapper &OpdMapper) { continue; } if (!MO.getReg()) { - LLVM_DEBUG(dbgs() << " is %%noreg, nothing to be done\n"); + LLVM_DEBUG(dbgs() << " is $noreg, nothing to be done\n"); continue; } assert(OpdMapper.getInstrMapping().getOperandMapping(OpIdx).NumBreakDowns != -- 2.7.4