diff options
author | Diana Picus <diana.picus@linaro.org> | 2016-07-06 11:22:11 +0000 |
---|---|---|
committer | Diana Picus <diana.picus@linaro.org> | 2016-07-06 11:22:11 +0000 |
commit | b772e409ba925a42cd7f40a464b2874611f3fa70 (patch) | |
tree | 40ea5fb12cabdf72963bd04da3d7e5374e9a477c /llvm/test | |
parent | fd995fe65401ef34bbdd0fa0458fe65b44d938ae (diff) | |
download | bcm5719-llvm-b772e409ba925a42cd7f40a464b2874611f3fa70.tar.gz bcm5719-llvm-b772e409ba925a42cd7f40a464b2874611f3fa70.zip |
[ARM] Do not test for CPUs, use SubtargetFeatures. Also remove 2 flags.
This is a follow-up for r273544.
The end goal is to get rid of the isSwift / isCortexXY / isWhatever methods.
This commit also removes two command-line flags that weren't used in any of the
tests: widen-vmovs and swift-partial-update-clearance. The former may be easily
replaced with the mattr mechanism, but the latter may not (as it is a subtarget
property, and not a proper feature).
Differential Revision: http://reviews.llvm.org/D21797
llvm-svn: 274620
Diffstat (limited to 'llvm/test')
-rw-r--r-- | llvm/test/CodeGen/ARM/widen-vmovs.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/ARM/widen-vmovs.ll b/llvm/test/CodeGen/ARM/widen-vmovs.ll index 316cfabab48..2abf8d9701f 100644 --- a/llvm/test/CodeGen/ARM/widen-vmovs.ll +++ b/llvm/test/CodeGen/ARM/widen-vmovs.ll @@ -1,4 +1,4 @@ -; RUN: llc < %s -widen-vmovs -mcpu=cortex-a8 -verify-machineinstrs -disable-block-placement | FileCheck %s +; RUN: llc < %s -mcpu=cortex-a8 -verify-machineinstrs -disable-block-placement | FileCheck %s target triple = "thumbv7-apple-ios" ; The 1.0e+10 constant is loaded from the constant pool and kept in a register. |