From: Chandler Carruth Date: Sat, 2 Jul 2011 20:43:08 +0000 (+0000) Subject: FileCheck-ize X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=432a8931e4daaf246536a27e7c58966fc01866e3;p=oota-llvm.git FileCheck-ize git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134351 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/X86/2006-11-12-CSRetCC.ll b/test/CodeGen/X86/2006-11-12-CSRetCC.ll index 91210ea90c6..6ec9a488494 100644 --- a/test/CodeGen/X86/2006-11-12-CSRetCC.ll +++ b/test/CodeGen/X86/2006-11-12-CSRetCC.ll @@ -1,9 +1,14 @@ -; RUN: llc < %s -march=x86 | grep {subl \$4, %esp} +; RUN: llc < %s -march=x86 | FileCheck %s target triple = "i686-pc-linux-gnu" @str = internal constant [9 x i8] c"%f+%f*i\0A\00" ; <[9 x i8]*> [#uses=1] define i32 @main() { +; CHECK: main: +; CHECK-NOT: ret +; CHECK: subl $4, %{{.*}} +; CHECK: ret + entry: %retval = alloca i32, align 4 ; [#uses=1] %tmp = alloca { double, double }, align 16 ; <{ double, double }*> [#uses=4]