[llvm-commits] [llvm] r52159 - in /llvm/trunk/test/Transforms: ArgumentPromotion/aggregate-promote.ll InstCombine/2008-01-21-MismatchedCastAndCompare.ll
Dan Gohman
gohman at apple.com
Mon Jun 9 15:36:47 PDT 2008
Author: djg
Date: Mon Jun 9 17:36:45 2008
New Revision: 52159
URL: http://llvm.org/viewvc/llvm-project?rev=52159&view=rev
Log:
Fix two more not-grep tests that were missing llvm-dis.
Modified:
llvm/trunk/test/Transforms/ArgumentPromotion/aggregate-promote.ll
llvm/trunk/test/Transforms/InstCombine/2008-01-21-MismatchedCastAndCompare.ll
Modified: llvm/trunk/test/Transforms/ArgumentPromotion/aggregate-promote.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/ArgumentPromotion/aggregate-promote.ll?rev=52159&r1=52158&r2=52159&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/ArgumentPromotion/aggregate-promote.ll (original)
+++ llvm/trunk/test/Transforms/ArgumentPromotion/aggregate-promote.ll Mon Jun 9 17:36:45 2008
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | opt -argpromotion -instcombine | not grep load
+; RUN: llvm-as < %s | opt -argpromotion -instcombine | llvm-dis | not grep load
%QuadTy = type { i32, i32, i32, i32 }
@G = constant %QuadTy {
Modified: llvm/trunk/test/Transforms/InstCombine/2008-01-21-MismatchedCastAndCompare.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Transforms/InstCombine/2008-01-21-MismatchedCastAndCompare.ll?rev=52159&r1=52158&r2=52159&view=diff
==============================================================================
--- llvm/trunk/test/Transforms/InstCombine/2008-01-21-MismatchedCastAndCompare.ll (original)
+++ llvm/trunk/test/Transforms/InstCombine/2008-01-21-MismatchedCastAndCompare.ll Mon Jun 9 17:36:45 2008
@@ -1,5 +1,5 @@
-; RUN: llvm-as < %s | opt -instcombine | notcast
-; RUN: llvm-as < %s | opt -instcombine | not grep {icmp s}
+; RUN: llvm-as < %s | opt -instcombine | llvm-dis | notcast
+; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep {icmp s}
; PR1940
define i1 @test1(i8 %A, i8 %B) {
More information about the llvm-commits
mailing list