diff options
Diffstat (limited to 'test/FrontendC/implicit-arg.c')
-rw-r--r-- | test/FrontendC/implicit-arg.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/test/FrontendC/implicit-arg.c b/test/FrontendC/implicit-arg.c deleted file mode 100644 index a6cb8bc..0000000 --- a/test/FrontendC/implicit-arg.c +++ /dev/null @@ -1,10 +0,0 @@ -// RUN: %llvmgcc %s -S -O0 -o - -// RUN: %llvmgcc %s -S -O1 -o - -// rdar://6518089 - -static int bar(); -void foo() { - int a = bar(); -} -int bar(unsigned a) { -} |