diff options
author | Vedant Kumar <vsk@apple.com> | 2016-04-14 23:32:40 +0000 |
---|---|---|
committer | Vedant Kumar <vsk@apple.com> | 2016-04-14 23:32:40 +0000 |
commit | 4960fbf391360ae04c5815fca2fd647567a977f3 (patch) | |
tree | fe2b243222b713533028f9184c795ad1cade366b /llvm/test/Transforms | |
parent | 9c499c3a74721c12837d1be267160a532a0e20a6 (diff) | |
download | bcm5719-llvm-4960fbf391360ae04c5815fca2fd647567a977f3.tar.gz bcm5719-llvm-4960fbf391360ae04c5815fca2fd647567a977f3.zip |
[test] Require 'asserts' for a test which uses -debug-only
Without this line, bots which run check-all on Release compilers will
break.
llvm-svn: 266386
Diffstat (limited to 'llvm/test/Transforms')
-rw-r--r-- | llvm/test/Transforms/LoopVectorize/ARM/arm-ieee-vectorize.ll | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/test/Transforms/LoopVectorize/ARM/arm-ieee-vectorize.ll b/llvm/test/Transforms/LoopVectorize/ARM/arm-ieee-vectorize.ll index e224c82c909..1a0b5b4136d 100644 --- a/llvm/test/Transforms/LoopVectorize/ARM/arm-ieee-vectorize.ll +++ b/llvm/test/Transforms/LoopVectorize/ARM/arm-ieee-vectorize.ll @@ -1,6 +1,7 @@ ; RUN: opt -mtriple armv7-linux-gnueabihf -loop-vectorize -S %s -debug-only=loop-vectorize -o /dev/null 2>&1 | FileCheck %s --check-prefix=CHECK --check-prefix=LINUX-V7 ; RUN: opt -mtriple armv8-linux-gnu -loop-vectorize -S %s -debug-only=loop-vectorize -o /dev/null 2>&1 | FileCheck %s --check-prefix=CHECK --check-prefix=LINUX-V8 ; RUN: opt -mtriple armv7-unknwon-darwin -loop-vectorize -S %s -debug-only=loop-vectorize -o /dev/null 2>&1 | FileCheck %s --check-prefix=CHECK --check-prefix=DARWIN +; REQUIRES: asserts ; Testing the ability of the loop vectorizer to tell when SIMD is safe or not ; regarding IEEE 754 standard. |