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/ARMMCInstLower.cpp | |
parent | b1f9501242ced15bad9d98b4b729dcb2f5dc925b (diff) | |
download | llvm-afade35003453a5e299084e4b4d0413bd4992acf.zip llvm-afade35003453a5e299084e4b4d0413bd4992acf.tar.gz llvm-afade35003453a5e299084e4b4d0413bd4992acf.tar.bz2 |
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/ARMMCInstLower.cpp')
-rw-r--r-- | llvm/lib/Target/ARM/ARMMCInstLower.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/lib/Target/ARM/ARMMCInstLower.cpp b/llvm/lib/Target/ARM/ARMMCInstLower.cpp index a2aca2d..557a9aa 100644 --- a/llvm/lib/Target/ARM/ARMMCInstLower.cpp +++ b/llvm/lib/Target/ARM/ARMMCInstLower.cpp @@ -49,11 +49,6 @@ MCOperand ARMAsmPrinter::GetSymbolRef(const MachineOperand &MO, } break; } - - case ARMII::MO_PLT: - Expr = MCSymbolRefExpr::create(Symbol, MCSymbolRefExpr::VK_PLT, - OutContext); - break; } if (!MO.isJTI() && MO.getOffset()) |