diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2015-05-27 18:44:32 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2015-05-27 18:44:32 +0000 |
commit | 5a5ac124e1efaf208671f01c46edb15f29ed2a0b (patch) | |
tree | a6140557876943cdd800ee997c9317283394b22c /test/Assembler/alias-use-list-order.ll | |
parent | f03b5bed27d0d2eafd68562ce14f8b5e3f1f0801 (diff) |
Diffstat (limited to 'test/Assembler/alias-use-list-order.ll')
-rw-r--r-- | test/Assembler/alias-use-list-order.ll | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/Assembler/alias-use-list-order.ll b/test/Assembler/alias-use-list-order.ll index d29fd6e435fe..c72bad28e500 100644 --- a/test/Assembler/alias-use-list-order.ll +++ b/test/Assembler/alias-use-list-order.ll @@ -2,10 +2,10 @@ ; Globals. @global = global i32 0 -@alias.ref1 = global i32* getelementptr inbounds (i32* @alias, i64 1) -@alias.ref2 = global i32* getelementptr inbounds (i32* @alias, i64 1) +@alias.ref1 = global i32* getelementptr inbounds (i32, i32* @alias, i64 1) +@alias.ref2 = global i32* getelementptr inbounds (i32, i32* @alias, i64 1) ; Aliases. @alias = alias i32* @global -@alias.ref3 = alias i32* getelementptr inbounds (i32* @alias, i64 1) -@alias.ref4 = alias i32* getelementptr inbounds (i32* @alias, i64 1) +@alias.ref3 = alias i32* getelementptr inbounds (i32, i32* @alias, i64 1) +@alias.ref4 = alias i32* getelementptr inbounds (i32, i32* @alias, i64 1) |