diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/C++Frontend/2007-04-14-FNoBuiltin.cpp | 2 | ||||
-rw-r--r-- | test/CFrontend/2007-04-14-FNoBuiltin.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/C++Frontend/2007-04-14-FNoBuiltin.cpp b/test/C++Frontend/2007-04-14-FNoBuiltin.cpp index c52b30b..31e4528 100644 --- a/test/C++Frontend/2007-04-14-FNoBuiltin.cpp +++ b/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/test/CFrontend/2007-04-14-FNoBuiltin.c b/test/CFrontend/2007-04-14-FNoBuiltin.c index 454396b..88bf0e0 100644 --- a/test/CFrontend/2007-04-14-FNoBuiltin.c +++ b/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*, ...); |