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/test/CodeGen/Thumb2/tls2.ll | |
| 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/test/CodeGen/Thumb2/tls2.ll')
| -rw-r--r-- | llvm/test/CodeGen/Thumb2/tls2.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/Thumb2/tls2.ll b/llvm/test/CodeGen/Thumb2/tls2.ll index 8f05ceab19f..98ae8e6d90d 100644 --- a/llvm/test/CodeGen/Thumb2/tls2.ll +++ b/llvm/test/CodeGen/Thumb2/tls2.ll @@ -11,7 +11,7 @@ entry: ; CHECK-NOT-PIC: i(GOTTPOFF) ; CHECK-PIC-LABEL: f: -; CHECK-PIC: bl __tls_get_addr(PLT) +; CHECK-PIC: bl __tls_get_addr %tmp1 = load i32, i32* @i ; <i32> [#uses=1] ret i32 %tmp1 } @@ -24,6 +24,6 @@ entry: ; CHECK-NOT-PIC: i(GOTTPOFF) ; CHECK-PIC-LABEL: g: -; CHECK-PIC: bl __tls_get_addr(PLT) +; CHECK-PIC: bl __tls_get_addr ret i32* @i } |

