diff options
author | Dale Johannesen <dalej@apple.com> | 2007-04-15 02:40:12 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2007-04-15 02:40:12 +0000 |
commit | a156ee118b3de6d613b316e2718ac0b7880b281a (patch) | |
tree | b812e6acb5d34c5a10de6a1ef3975034f8444fbd /test | |
parent | 31755a024d8056947d9500233f8bd2e41b06c132 (diff) |
adjust per review comments
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36041 91177308-0d34-0410-b5e6-96231b3b80d8
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 c52b30bd39..31e4528754 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 454396b22a..88bf0e0143 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*, ...); |