[llvm] r179825 - Don't run expensive -O2 and -O3 in tests.
Jakub Staszak
kubastaszak at gmail.com
Thu Apr 18 18:10:45 PDT 2013
Author: kuba
Date: Thu Apr 18 20:10:45 2013
New Revision: 179825
URL: http://llvm.org/viewvc/llvm-project?rev=179825&view=rev
Log:
Don't run expensive -O2 and -O3 in tests.
Modified:
llvm/trunk/test/Transforms/GlobalDCE/complex-constantexpr.ll
llvm/trunk/test/Transforms/PhaseOrdering/scev.ll
Modified: llvm/trunk/test/Transforms/GlobalDCE/complex-constantexpr.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/GlobalDCE/complex-constantexpr.ll?rev=179825&r1=179824&r2=179825&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/GlobalDCE/complex-constantexpr.ll (original)
+++ llvm/trunk/test/Transforms/GlobalDCE/complex-constantexpr.ll Thu Apr 18 20:10:45 2013
@@ -1,4 +1,4 @@
-; RUN: opt -O2 -disable-output < %s
+; RUN: opt -globaldce -disable-output < %s
; PR15714
%struct.ham = type { i32 }
Modified: llvm/trunk/test/Transforms/PhaseOrdering/scev.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/PhaseOrdering/scev.ll?rev=179825&r1=179824&r2=179825&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/PhaseOrdering/scev.ll (original)
+++ llvm/trunk/test/Transforms/PhaseOrdering/scev.ll Thu Apr 18 20:10:45 2013
@@ -1,4 +1,4 @@
-; RUN: opt -O3 -S -analyze -scalar-evolution < %s | FileCheck %s
+; RUN: opt -S -analyze -scalar-evolution < %s | FileCheck %s
;
; This file contains phase ordering tests for scalar evolution.
; Test that the standard passes don't obfuscate the IR so scalar evolution can't
More information about the llvm-commits
mailing list