blob: 4a36e0f13d5c685a3f2255745a601abccd2df01a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// RUN: clang-cc -emit-llvm -o - %s | grep -e "^@f" | count 1
int x() { return 1; }
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();
}
|