diff options
author | Daniel Sanders <daniel_l_sanders@apple.com> | 2021-03-05 20:47:09 -0800 |
---|---|---|
committer | Daniel Sanders <daniel_l_sanders@apple.com> | 2021-03-10 16:46:44 -0800 |
commit | 134a179dee8716d6b79620b26af5a4bafed9b8ed (patch) | |
tree | 793663d67700323994c3247743d458aa6cdefea2 /llvm/lib/CodeGen/MachineOperand.cpp | |
parent | 4e02eb8014c4dd8dd21071947525926bbe8046ef (diff) | |
download | llvm-134a179dee8716d6b79620b26af5a4bafed9b8ed.zip llvm-134a179dee8716d6b79620b26af5a4bafed9b8ed.tar.gz llvm-134a179dee8716d6b79620b26af5a4bafed9b8ed.tar.bz2 |
[mir] Change 'undef' for MMO base addresses to 'unknown-address'
Differential Revision: https://reviews.llvm.org/D98100
Diffstat (limited to 'llvm/lib/CodeGen/MachineOperand.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineOperand.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineOperand.cpp b/llvm/lib/CodeGen/MachineOperand.cpp index be27b6f..ee3cdad 100644 --- a/llvm/lib/CodeGen/MachineOperand.cpp +++ b/llvm/lib/CodeGen/MachineOperand.cpp @@ -1164,7 +1164,7 @@ void MachineMemOperand::print(raw_ostream &OS, ModuleSlotTracker &MST, OS << ((isLoad() && isStore()) ? " on " : isLoad() ? " from " : " into ") - << "undef"; + << "unknown-address"; } MachineOperand::printOperandOffset(OS, getOffset()); if (getAlign() != getSize()) |