f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
19 lines
378 B
C
19 lines
378 B
C
// RUN: %clang_cc1 -triple x86_64-pc-linux-gnu -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]]
|
|
|