diff options
Diffstat (limited to 'clang/test/PCH/stmts.c')
-rw-r--r-- | clang/test/PCH/stmts.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/test/PCH/stmts.c b/clang/test/PCH/stmts.c index fc6cfc29a20..c8fbc83a0fa 100644 --- a/clang/test/PCH/stmts.c +++ b/clang/test/PCH/stmts.c @@ -10,3 +10,5 @@ int g1(int x) { return f1(x); } const char* query_name(void) { return what_is_my_name(); } int use_computed_goto(int x) { return computed_goto(x); } + +int get_weird_max(int x, int y) { return weird_max(x, y); } |