From: Vedant Kumar Date: Thu, 14 Apr 2016 23:32:40 +0000 (+0000) Subject: [test] Require 'asserts' for a test which uses -debug-only X-Git-Tag: llvmorg-3.9.0-rc1~9038 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4960fbf391360ae04c5815fca2fd647567a977f3;p=platform%2Fupstream%2Fllvm.git [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 --- diff --git a/llvm/test/Transforms/LoopVectorize/ARM/arm-ieee-vectorize.ll b/llvm/test/Transforms/LoopVectorize/ARM/arm-ieee-vectorize.ll index e224c82..1a0b5b4 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.