Rafael Espindola | da51320 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 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 |
| 3 | |
| 4 | ; FIXME: |
| 5 | ; The C1 direction is incorrect. |
| 6 | ; When moving an alias to an existing module and we want to discard the aliasee |
| 7 | ; (the C2 case), the IRMover knows to copy the aliasee as internal. |
| 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. |
| 10 | ; The C1 case doesn't happen when using a system linker with a plugin because |
| 11 | ; the linker does full symbol resolution first. |
| 12 | ; Given that this is a problem only with llvm-link and its 1 module at a time |
| 13 | ; linking, it should probably learn to changes the aliases in the destination |
| 14 | ; before using the IRMover. |
Rafael Espindola | 27c076a | 2014-05-16 19:35:39 +0000 | [diff] [blame] | 15 | |
| 16 | @foo = weak global i32 0 |
Rafael Espindola | da51320 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 17 | ; C1-DAG: @foo = alias i32, i32* @zed |
| 18 | ; C2-DAG: @foo = alias i32, i32* @zed |
Rafael Espindola | 27c076a | 2014-05-16 19:35:39 +0000 | [diff] [blame] | 19 | |
David Blaikie | 21f77df | 2015-09-11 03:22:04 +0000 | [diff] [blame] | 20 | @bar = alias i32, i32* @foo |
Rafael Espindola | da51320 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 21 | ; C1-DAG: @bar = alias i32, i32* @foo |
| 22 | |
| 23 | ; C2-DAG: @foo.1 = internal global i32 0 |
| 24 | ; C2-DAG: @bar = alias i32, i32* @foo.1 |
Rafael Espindola | 27c076a | 2014-05-16 19:35:39 +0000 | [diff] [blame] | 25 | |
| 26 | @foo2 = weak global i32 0 |
Rafael Espindola | da51320 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 27 | ; C1-DAG: @foo2 = alias i16, bitcast (i32* @zed to i16*) |
| 28 | ; C2-DAG: @foo2 = alias i16, bitcast (i32* @zed to i16*) |
Rafael Espindola | 27c076a | 2014-05-16 19:35:39 +0000 | [diff] [blame] | 29 | |
David Blaikie | 21f77df | 2015-09-11 03:22:04 +0000 | [diff] [blame] | 30 | @bar2 = alias i32, i32* @foo2 |
Rafael Espindola | da51320 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 31 | ; C1-DAG: @bar2 = alias i32, bitcast (i16* @foo2 to i32*) |
Rafael Espindola | 27c076a | 2014-05-16 19:35:39 +0000 | [diff] [blame] | 32 | |
Rafael Espindola | da51320 | 2015-12-10 14:19:35 +0000 | [diff] [blame] | 33 | ; C2-DAG: @foo2.2 = internal global i32 0 |
| 34 | ; C2-DAG: @bar2 = alias i32, i32* @foo2.2 |
| 35 | |
| 36 | ; C1-DAG: @zed = global i32 42 |
| 37 | ; C2-DAG: @zed = global i32 42 |