diff options
author | Mike Stump <mrs@apple.com> | 2009-10-08 23:05:06 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-10-08 23:05:06 +0000 |
commit | f8c1f0d1f03c54b3fb94a85ddf4267a9c9a49acb (patch) | |
tree | 87b6ea2f2ba8f2297f89e29b24f67b467725dc84 /clang/test/CodeGenCXX/predefined-expr.cpp | |
parent | af9afe9bc93f245a76936721d7cd33343f75b884 (diff) | |
download | bcm5719-llvm-f8c1f0d1f03c54b3fb94a85ddf4267a9c9a49acb.tar.gz bcm5719-llvm-f8c1f0d1f03c54b3fb94a85ddf4267a9c9a49acb.zip |
Speed up testing by avoiding stdio.h, also helps testing on windows.
Patch by John Thompson.
llvm-svn: 83593
Diffstat (limited to 'clang/test/CodeGenCXX/predefined-expr.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/predefined-expr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/predefined-expr.cpp b/clang/test/CodeGenCXX/predefined-expr.cpp index 159590c6b74..95bc255bdde 100644 --- a/clang/test/CodeGenCXX/predefined-expr.cpp +++ b/clang/test/CodeGenCXX/predefined-expr.cpp @@ -51,7 +51,7 @@ // CHECK: private constant [11 x i8] c"staticFunc\00" // CHECK: private constant [28 x i8] c"void NS::Base::staticFunc()\00" -#include <stdio.h> +int printf(const char * _Format, ...); namespace NS { |