diff options
Diffstat (limited to 'test/CodeGen/functions.c')
-rw-r--r-- | test/CodeGen/functions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/functions.c b/test/CodeGen/functions.c index 55f580b303..985599216e 100644 --- a/test/CodeGen/functions.c +++ b/test/CodeGen/functions.c @@ -23,7 +23,7 @@ int a() {return 1;} void f0() {} void f1(); -// RUN: grep 'call void (...)\* bitcast (void ()\* @f1' %t && +// RUN: grep 'call void @f1()' %t && void f2(void) { f1(1, 2, 3); } |