Lines Matching full:alias
1 ; RUN: llvm-link %s %S/Inputs/alias.ll -S -o - | FileCheck --check-prefix=C1 %s
2 ; RUN: llvm-link %S/Inputs/alias.ll %s -S -o - | FileCheck --check-prefix=C2 %s
6 ; When moving an alias to an existing module and we want to discard the aliasee
8 ; When moving a replacement to an aliasee to a module that has an alias (C1),
9 ; a replace all uses with blindly changes the alias.
17 ; C1-DAG: @foo = alias i32, i32* @zed
18 ; C2-DAG: @foo = alias i32, i32* @zed
20 @bar = alias i32, i32* @foo
21 ; C1-DAG: @bar = alias i32, i32* @foo
24 ; C2-DAG: @bar = alias i32, i32* @foo.1
27 ; C1-DAG: @foo2 = alias i16, bitcast (i32* @zed to i16*)
28 ; C2-DAG: @foo2 = alias i16, bitcast (i32* @zed to i16*)
30 @bar2 = alias i32, i32* @foo2
31 ; C1-DAG: @bar2 = alias i32, bitcast (i16* @foo2 to i32*)
34 ; C2-DAG: @bar2 = alias i32, i32* @foo2.2