diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2016-06-16 16:09:53 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2016-06-16 16:09:53 +0000 |
commit | afade35003453a5e299084e4b4d0413bd4992acf (patch) | |
tree | 0198b8069d1484c82c9f6eaffbf3317c2293852a /llvm/lib/Target/ARM/ARMAsmPrinter.cpp | |
parent | b1f9501242ced15bad9d98b4b729dcb2f5dc925b (diff) | |
download | bcm5719-llvm-afade35003453a5e299084e4b4d0413bd4992acf.tar.gz bcm5719-llvm-afade35003453a5e299084e4b4d0413bd4992acf.zip |
Don't print (PLT) on arm.
The R_ARM_PLT32 relocation is deprecated and is not produced by MC.
This means that the code being deleted is dead from the .o point of
view and was making the .s more confusing.
llvm-svn: 272909
Diffstat (limited to 'llvm/lib/Target/ARM/ARMAsmPrinter.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/ARMAsmPrinter.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/Target/ARM/ARMAsmPrinter.cpp b/llvm/lib/Target/ARM/ARMAsmPrinter.cpp index 27bf01b5dff..1c4148ffd98 100644 --- a/llvm/lib/Target/ARM/ARMAsmPrinter.cpp +++ b/llvm/lib/Target/ARM/ARMAsmPrinter.cpp @@ -212,8 +212,6 @@ void ARMAsmPrinter::printOperand(const MachineInstr *MI, int OpNum, GetARMGVSymbol(GV, TF)->print(O, MAI); printOffset(MO.getOffset(), O); - if (TF == ARMII::MO_PLT) - O << "(PLT)"; break; } case MachineOperand::MO_ConstantPoolIndex: |