From 0c23b6858fecc7fb7145201aa82d24c2bcf10c33 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Wed, 9 Sep 2009 00:22:49 +0000 Subject: [PATCH] Use "opt < %s" instead of "opt %s" to keep the testname away from the grep. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81299 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Transforms/InstCombine/apint-shift-simplify.ll | 2 +- test/Transforms/InstCombine/shift-simplify.ll | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Transforms/InstCombine/apint-shift-simplify.ll b/test/Transforms/InstCombine/apint-shift-simplify.ll index 421069a21ec..1a3340ac566 100644 --- a/test/Transforms/InstCombine/apint-shift-simplify.ll +++ b/test/Transforms/InstCombine/apint-shift-simplify.ll @@ -1,4 +1,4 @@ -; RUN: opt %s -instcombine -S | \ +; RUN: opt < %s -instcombine -S | \ ; RUN: egrep {shl|lshr|ashr} | count 3 define i41 @test0(i41 %A, i41 %B, i41 %C) { diff --git a/test/Transforms/InstCombine/shift-simplify.ll b/test/Transforms/InstCombine/shift-simplify.ll index b18414dad4d..e5cc705350f 100644 --- a/test/Transforms/InstCombine/shift-simplify.ll +++ b/test/Transforms/InstCombine/shift-simplify.ll @@ -1,4 +1,4 @@ -; RUN: opt %s -instcombine -S | \ +; RUN: opt < %s -instcombine -S | \ ; RUN: egrep {shl|lshr|ashr} | count 3 define i32 @test0(i32 %A, i32 %B, i32 %C) { -- 2.34.1