summaryrefslogtreecommitdiffstats
path: root/test/CodeGen/2008-07-29-override-alias-decl.c
blob: a4bea0e06cd885945a91490c6c292b460de79cd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// RUN: %clang_cc1 -emit-llvm -o - %s | FileCheck %s

int x() { return 1; }

// CHECK:  [[retval:%.*]] = alloca i32
// CHECK:  store i32 1, i32* [[retval]]
// CHECK:  [[load:%.*]] = load i32* [[retval]]
// CHECK:  ret i32 [[load]]


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:  [[retval:%.*]] = alloca i32
// CHECK:  [[call:%.*]] = call i32 (...)* @f()
// CHECK:  store i32 [[call]], i32* [[retval]]
// CHECK:  [[load:%.*]] = load i32* [[retval]]
// CHECK:  ret i32 [[load]]