From 23da023a58a9143e65452a9986eb404c3e2d0c65 Mon Sep 17 00:00:00 2001 From: Dale Johannesen Date: Sun, 15 Apr 2007 02:40:12 +0000 Subject: [PATCH] adjust per review comments llvm-svn: 36041 --- llvm/test/C++Frontend/2007-04-14-FNoBuiltin.cpp | 2 +- llvm/test/CFrontend/2007-04-14-FNoBuiltin.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/test/C++Frontend/2007-04-14-FNoBuiltin.cpp b/llvm/test/C++Frontend/2007-04-14-FNoBuiltin.cpp index c52b30bd394b..31e4528754e0 100644 --- a/llvm/test/C++Frontend/2007-04-14-FNoBuiltin.cpp +++ b/llvm/test/C++Frontend/2007-04-14-FNoBuiltin.cpp @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -O2 -fno-builtin -o - | llvm-as -f | llc | grep -v puts +// RUN: %llvmgcc -S %s -O2 -fno-builtin -o - | grep call.*printf // Check that -fno-builtin is honored. extern "C" int printf(const char*, ...); diff --git a/llvm/test/CFrontend/2007-04-14-FNoBuiltin.c b/llvm/test/CFrontend/2007-04-14-FNoBuiltin.c index 454396b22a73..88bf0e014309 100644 --- a/llvm/test/CFrontend/2007-04-14-FNoBuiltin.c +++ b/llvm/test/CFrontend/2007-04-14-FNoBuiltin.c @@ -1,4 +1,4 @@ -// RUN: %llvmgcc -S %s -O2 -fno-builtin -o - | llvm-as -f | llc | grep -v puts +// RUN: %llvmgcc -S %s -O2 -fno-builtin -o - | grep call.*printf // Check that -fno-builtin is honored. extern int printf(const char*, ...);