Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGen / 2003-08-20-PrototypeMismatch.c
blob88dd068d3c556c142d683c9f706ca45ad8db2d09
1 // RUN: %clang_cc1 -emit-llvm %s -o /dev/null
5 static int foo(int);
7 static int foo(C)
8 char C;
10 return C;
13 void test(void) {
14 foo(7);