freebsd-dev/test/CodeGen/builtin-rename.c
2010-01-01 10:34:51 +00:00

9 lines
159 B
C

// RUN: %clang_cc1 %s -emit-llvm -o - | grep 'declare.*printf' | count 1
// PR3612
int printf(const char *, ...);
int foo(void) {
return printf(printf);
}