diff options
| author | Mirko Brkusanin <Mirko.Brkusanin@rt-rk.com> | 2019-10-23 12:24:35 +0200 |
|---|---|---|
| committer | Mirko Brkusanin <Mirko.Brkusanin@rt-rk.com> | 2019-10-23 12:24:35 +0200 |
| commit | 4b63ca1379a8a6399c3d29560623ee832c818919 (patch) | |
| tree | 1b61de736858e27c933931953ff3926ad6747c91 /llvm/test/CodeGen/Mips | |
| parent | 74a72e684849d00dbe5cc784cf05d20fd8873cdb (diff) | |
| download | bcm5719-llvm-4b63ca1379a8a6399c3d29560623ee832c818919.tar.gz bcm5719-llvm-4b63ca1379a8a6399c3d29560623ee832c818919.zip | |
[Mips] Use appropriate private label prefix based on Mips ABI
MipsMCAsmInfo was using '$' prefix for Mips32 and '.L' for Mips64
regardless of -target-abi option. By passing MCTargetOptions to MCAsmInfo
we can find out Mips ABI and pick appropriate prefix.
Tags: #llvm, #clang, #lldb
Differential Revision: https://reviews.llvm.org/D66795
Diffstat (limited to 'llvm/test/CodeGen/Mips')
| -rw-r--r-- | llvm/test/CodeGen/Mips/compactbranches/no-beqzc-bnezc.ll | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/Mips/compactbranches/no-beqzc-bnezc.ll b/llvm/test/CodeGen/Mips/compactbranches/no-beqzc-bnezc.ll index 7a9f287c1b4..2bda921d57a 100644 --- a/llvm/test/CodeGen/Mips/compactbranches/no-beqzc-bnezc.ll +++ b/llvm/test/CodeGen/Mips/compactbranches/no-beqzc-bnezc.ll @@ -103,7 +103,7 @@ define i64 @f5(i64 %a, i64 %b) { define i32 @f6(i32 %a) { ; CHECK-LABEL: f6: -; CHECK: beqzc ${{[0-9]+}}, $BB +; CHECK: beqzc ${{[0-9]+}}, {{((\$)|(\.L))}}BB %cmp = icmp eq i32 %a, 0 br i1 %cmp, label %if.then, label %if.end @@ -117,7 +117,7 @@ define i32 @f6(i32 %a) { define i32 @f7(i32 %a) { ; CHECK-LABEL: f7: -; CHECK: bnezc ${{[0-9]+}}, $BB +; CHECK: bnezc ${{[0-9]+}}, {{((\$)|(\.L))}}BB %cmp = icmp eq i32 0, %a br i1 %cmp, label %if.then, label %if.end |

