diff options
author | Sam Parker <sam.parker@arm.com> | 2018-07-24 12:04:23 +0000 |
---|---|---|
committer | Sam Parker <sam.parker@arm.com> | 2018-07-24 12:04:23 +0000 |
commit | 8b93e82c3d60d16c868639687d1abe94b4c51c89 (patch) | |
tree | 663cf12cb2857ca09ba4d2025364160d34dc973b /llvm/test/CodeGen/ARM/arm-cgp-signed.ll | |
parent | ab55bc48e60e03e9fae99762020209314571d016 (diff) | |
download | bcm5719-llvm-8b93e82c3d60d16c868639687d1abe94b4c51c89.tar.gz bcm5719-llvm-8b93e82c3d60d16c868639687d1abe94b4c51c89.zip |
[ARM] Disable ARMCodeGenPrepare by default
ARM Stage 2 builders have been suspiciously broken since the pass was
committed. Disabling to hopefully fix the bots and give me time to
debug.
llvm-svn: 337821
Diffstat (limited to 'llvm/test/CodeGen/ARM/arm-cgp-signed.ll')
-rw-r--r-- | llvm/test/CodeGen/ARM/arm-cgp-signed.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/test/CodeGen/ARM/arm-cgp-signed.ll b/llvm/test/CodeGen/ARM/arm-cgp-signed.ll index 80d5517b95f..7494b57f425 100644 --- a/llvm/test/CodeGen/ARM/arm-cgp-signed.ll +++ b/llvm/test/CodeGen/ARM/arm-cgp-signed.ll @@ -1,7 +1,7 @@ -; RUN: llc -mtriple=thumbv7m %s -o - | FileCheck %s -; RUN: llc -mtriple=thumbv8m.main %s -o - | FileCheck %s -; RUN: llc -mtriple=thumbv7 %s -o - | FileCheck %s -; RUN: llc -mtriple=armv8 %s -o - | FileCheck %s +; RUN: llc -mtriple=thumbv7m -arm-disable-cgp=false %s -o - | FileCheck %s +; RUN: llc -mtriple=thumbv8m.main -arm-disable-cgp=false %s -o - | FileCheck %s +; RUN: llc -mtriple=thumbv7 %s -arm-disable-cgp=false -o - | FileCheck %s +; RUN: llc -mtriple=armv8 %s -arm-disable-cgp=false -o - | FileCheck %s ; Test to check that ARMCodeGenPrepare doesn't optimised away sign extends. ; CHECK-LABEL: test_signed_load: |