freebsd-dev/test/CodeGen/2008-07-29-override-alias-decl.c
2009-06-02 17:58:47 +00:00

13 lines
248 B
C

// RUN: clang-cc -emit-llvm -o - %s | grep -e "^@f" | count 1
int x() {}
int f() __attribute__((weak, alias("x")));
/* Test that we link to the alias correctly instead of making a new
forward definition. */
int f();
int h() {
return f();
}