blob: dbe10b395f4fa0225a823ce944f2bde57e6e95c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s
int x() { return 1; }
// CHECK: ret i32 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();
}
// CHECK: [[call:%.*]] = call i32 (...)* @f()
// CHECK: ret i32 [[call]]
|