From 632a55e2ccffae32e814c39258983c15d348501a Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 9 Jun 2008 22:36:45 +0000 Subject: [PATCH] Fix two more not-grep tests that were missing llvm-dis. llvm-svn: 52159 --- llvm/test/Transforms/ArgumentPromotion/aggregate-promote.ll | 2 +- .../InstCombine/2008-01-21-MismatchedCastAndCompare.ll | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/llvm/test/Transforms/ArgumentPromotion/aggregate-promote.ll b/llvm/test/Transforms/ArgumentPromotion/aggregate-promote.ll index a74813f15fff..62b1a07c434e 100644 --- a/llvm/test/Transforms/ArgumentPromotion/aggregate-promote.ll +++ b/llvm/test/Transforms/ArgumentPromotion/aggregate-promote.ll @@ -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 { diff --git a/llvm/test/Transforms/InstCombine/2008-01-21-MismatchedCastAndCompare.ll b/llvm/test/Transforms/InstCombine/2008-01-21-MismatchedCastAndCompare.ll index 12bfb80a164e..0c2cf54369cd 100644 --- a/llvm/test/Transforms/InstCombine/2008-01-21-MismatchedCastAndCompare.ll +++ b/llvm/test/Transforms/InstCombine/2008-01-21-MismatchedCastAndCompare.ll @@ -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) {