aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/2008-07-29-override-alias-decl.c
blob: 872950029618b080e57906bcc57064bf6dcde4fa (plain) (blame)
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-cc -emit-llvm -o - %s | FileCheck %s

int x() { return 1; }

// CHECK:  %retval = alloca i32
// CHECK:  store i32 1, i32* %retval
// CHECK:  %0 = load i32* %retval
// CHECK:  ret i32 %0


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:  %0 = load i32* %retval
// CHECK:  ret i32 %0