[llvm] r266386 - [test] Require 'asserts' for a test which uses -debug-only

Vedant Kumar via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 14 16:32:40 PDT 2016


Author: vedantk
Date: Thu Apr 14 18:32:40 2016
New Revision: 266386

URL: http://llvm.org/viewvc/llvm-project?rev=266386&view=rev
Log:
[test] Require 'asserts' for a test which uses -debug-only

Without this line, bots which run check-all on Release compilers will
break.

Modified:
    llvm/trunk/test/Transforms/LoopVectorize/ARM/arm-ieee-vectorize.ll

Modified: llvm/trunk/test/Transforms/LoopVectorize/ARM/arm-ieee-vectorize.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/LoopVectorize/ARM/arm-ieee-vectorize.ll?rev=266386&r1=266385&r2=266386&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/LoopVectorize/ARM/arm-ieee-vectorize.ll (original)
+++ llvm/trunk/test/Transforms/LoopVectorize/ARM/arm-ieee-vectorize.ll Thu Apr 14 18:32:40 2016
@@ -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.




More information about the llvm-commits mailing list