implicit-arg.c 177 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 // RUN: %clang_cc1 %s -emit-llvm -o - // RUN: %clang_cc1 %s -emit-llvm -O1 -o - // rdar://6518089 static int bar(); void foo() { int a = bar(); } int bar(unsigned a) { }