diff options
author | Eric Christopher <echristo@gmail.com> | 2017-07-01 02:55:22 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2017-07-01 02:55:22 +0000 |
commit | 015dc2094ef662bc7043a974b1f4738c89e8080e (patch) | |
tree | 01973674864bc32e03172edd09d9bde93a658f6d /llvm/test/CodeGen/ARM/execute-only-big-stack-frame.ll | |
parent | 96b416496839657a59ccad6ef15d7737ef7f2695 (diff) | |
download | bcm5719-llvm-015dc2094ef662bc7043a974b1f4738c89e8080e.tar.gz bcm5719-llvm-015dc2094ef662bc7043a974b1f4738c89e8080e.zip |
Rewrite ARM execute only support to avoid the use of a command line flag and unqualified ARMSubtarget lookup.
Paired with a clang commit to use the new behavior.
llvm-svn: 306927
Diffstat (limited to 'llvm/test/CodeGen/ARM/execute-only-big-stack-frame.ll')
-rw-r--r-- | llvm/test/CodeGen/ARM/execute-only-big-stack-frame.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/ARM/execute-only-big-stack-frame.ll b/llvm/test/CodeGen/ARM/execute-only-big-stack-frame.ll index 0fe67f9863a..24c6a06d6af 100644 --- a/llvm/test/CodeGen/ARM/execute-only-big-stack-frame.ll +++ b/llvm/test/CodeGen/ARM/execute-only-big-stack-frame.ll @@ -1,8 +1,8 @@ -; RUN: llc < %s -mtriple=thumbv7m -arm-execute-only -O0 %s -o - \ +; RUN: llc < %s -mtriple=thumbv7m -mattr=+execute-only -O0 %s -o - \ ; RUN: | FileCheck --check-prefix=CHECK-SUBW-ADDW %s -; RUN: llc < %s -mtriple=thumbv8m.base -arm-execute-only -O0 %s -o - \ +; RUN: llc < %s -mtriple=thumbv8m.base -mattr=+execute-only -O0 %s -o - \ ; RUN: | FileCheck --check-prefix=CHECK-MOVW-MOVT-ADD %s -; RUN: llc < %s -mtriple=thumbv8m.main -arm-execute-only -O0 %s -o - \ +; RUN: llc < %s -mtriple=thumbv8m.main -mattr=+execute-only -O0 %s -o - \ ; RUN: | FileCheck --check-prefix=CHECK-SUBW-ADDW %s define i8 @test_big_stack_frame() { |