summaryrefslogtreecommitdiffstats
path: root/clang/test/Modules/Inputs/codegen/foo.h
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/Modules/Inputs/codegen/foo.h')
-rw-r--r--clang/test/Modules/Inputs/codegen/foo.h12
1 files changed, 3 insertions, 9 deletions
diff --git a/clang/test/Modules/Inputs/codegen/foo.h b/clang/test/Modules/Inputs/codegen/foo.h
index b3a7af7c9d9..3fcab718573 100644
--- a/clang/test/Modules/Inputs/codegen/foo.h
+++ b/clang/test/Modules/Inputs/codegen/foo.h
@@ -1,10 +1,4 @@
-void f1(int &);
-static void f2() {}
-inline void foo() {
- static int i;
- f1(i);
- f2();
+inline void f1(const char* fmt, ...) {
+ __builtin_va_list args;
+ __builtin_va_start(args, fmt);
}
-inline void foo2() {
-}
-void foo_ext() {}
OpenPOWER on IntegriCloud