diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2016-11-21 13:15:38 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2016-11-21 13:15:38 +0000 |
commit | 68dd881697531f45b0260cb3dba56804986c8fa6 (patch) | |
tree | 4003d06dd343faab211d307e3249de6e0130ba80 | |
parent | b7bbaa669b9e31da18d38684f9a9c3258acf76eb (diff) | |
download | bcm5719-llvm-68dd881697531f45b0260cb3dba56804986c8fa6.tar.gz bcm5719-llvm-68dd881697531f45b0260cb3dba56804986c8fa6.zip |
Adjust arm64-irtranslator.ll test to changes from r287368
The test is currently broken, and this CL should fix it.
Patch by Adrian Kuegel!
Differential Revision: https://reviews.llvm.org/D26910
llvm-svn: 287536
-rw-r--r-- | llvm/test/CodeGen/AArch64/GlobalISel/arm64-irtranslator.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/AArch64/GlobalISel/arm64-irtranslator.ll b/llvm/test/CodeGen/AArch64/GlobalISel/arm64-irtranslator.ll index 02f26ccf29a..8ee6f1d4491 100644 --- a/llvm/test/CodeGen/AArch64/GlobalISel/arm64-irtranslator.ll +++ b/llvm/test/CodeGen/AArch64/GlobalISel/arm64-irtranslator.ll @@ -55,7 +55,7 @@ define void @allocai64() { ; CHECK: {{[0-9a-zA-Z._-]+}}: ; ; Make sure we have one successor and only one. -; CHECK-NEXT: successors: %[[END:[0-9a-zA-Z._-]+]]({{0x[a-f0-9]+ / 0x[a-f0-9]+}} = 100.00%) +; CHECK-NEXT: successors: %[[END:[0-9a-zA-Z._-]+]](0x80000000) ; ; Check that we emit the correct branch. ; CHECK: G_BR %[[END]] @@ -77,8 +77,8 @@ end: ; CHECK: {{[0-9a-zA-Z._-]+}}: ; ; Make sure we have two successors -; CHECK-NEXT: successors: %[[TRUE:[0-9a-zA-Z._-]+]]({{0x[a-f0-9]+ / 0x[a-f0-9]+}} = 50.00%), -; CHECK: %[[FALSE:[0-9a-zA-Z._-]+]]({{0x[a-f0-9]+ / 0x[a-f0-9]+}} = 50.00%) +; CHECK-NEXT: successors: %[[TRUE:[0-9a-zA-Z._-]+]](0x40000000), +; CHECK: %[[FALSE:[0-9a-zA-Z._-]+]](0x40000000) ; ; Check that we emit the correct branch. ; CHECK: [[ADDR:%.*]](p0) = COPY %x0 |