comparison test/Assembler/alias-use-list-order.ll @ 95:afa8332a0e37 LLVM3.8

LLVM 3.8
author Kaito Tokumori <e105711@ie.u-ryukyu.ac.jp>
date Tue, 13 Oct 2015 17:48:58 +0900
parents 54457678186b
children
comparison
equal deleted inserted replaced
84:f3e34b893a5f 95:afa8332a0e37
1 ; RUN: verify-uselistorder < %s 1 ; RUN: verify-uselistorder < %s
2 2
3 ; Globals. 3 ; Globals.
4 @global = global i32 0 4 @global = global i32 0
5 @alias.ref1 = global i32* getelementptr inbounds (i32* @alias, i64 1) 5 @alias.ref1 = global i32* getelementptr inbounds (i32, i32* @alias, i64 1)
6 @alias.ref2 = global i32* getelementptr inbounds (i32* @alias, i64 1) 6 @alias.ref2 = global i32* getelementptr inbounds (i32, i32* @alias, i64 1)
7 7
8 ; Aliases. 8 ; Aliases.
9 @alias = alias i32* @global 9 @alias = alias i32, i32* @global
10 @alias.ref3 = alias i32* getelementptr inbounds (i32* @alias, i64 1) 10 @alias.ref3 = alias i32, getelementptr inbounds (i32, i32* @alias, i64 1)
11 @alias.ref4 = alias i32* getelementptr inbounds (i32* @alias, i64 1) 11 @alias.ref4 = alias i32, getelementptr inbounds (i32, i32* @alias, i64 1)