diff options
author | Luke Cheeseman <luke.cheeseman@arm.com> | 2018-09-27 10:39:20 +0000 |
---|---|---|
committer | Luke Cheeseman <luke.cheeseman@arm.com> | 2018-09-27 10:39:20 +0000 |
commit | f6844b307a5369ea934550ccb85b063d73a268ee (patch) | |
tree | fb3253db58d50727e714d4cc86bffd047b9b3226 /llvm/lib/CodeGen/MachineOperand.cpp | |
parent | dababf70e2df03214b19c0bfaeb6091923171ef6 (diff) | |
download | bcm5719-llvm-f6844b307a5369ea934550ccb85b063d73a268ee.tar.gz bcm5719-llvm-f6844b307a5369ea934550ccb85b063d73a268ee.zip |
Reapply changes reverted in r343114, lldb patch to follow shortly
llvm-svn: 343192
Diffstat (limited to 'llvm/lib/CodeGen/MachineOperand.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineOperand.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/MachineOperand.cpp b/llvm/lib/CodeGen/MachineOperand.cpp index a116d8fe877..792aa9f0f16 100644 --- a/llvm/lib/CodeGen/MachineOperand.cpp +++ b/llvm/lib/CodeGen/MachineOperand.cpp @@ -696,6 +696,11 @@ static void printCFI(raw_ostream &OS, const MCCFIInstruction &CFI, if (MCSymbol *Label = CFI.getLabel()) MachineOperand::printSymbol(OS, *Label); break; + case MCCFIInstruction::OpNegateRAState: + OS << "negate_ra_sign_state "; + if (MCSymbol *Label = CFI.getLabel()) + MachineOperand::printSymbol(OS, *Label); + break; default: // TODO: Print the other CFI Operations. OS << "<unserializable cfi directive>"; |