llvm-6502/test/Assembler/alias-use-list-order.ll
Duncan P. N. Exon Smith 7838818ad7 IR: Implement uselistorder assembly directives
Implement `uselistorder` and `uselistorder_bb` assembly directives,
which allow the use-list order to be recovered when round-tripping to
assembly.

This is the bulk of PR20515.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@216025 91177308-0d34-0410-b5e6-96231b3b80d8
2014-08-19 21:30:15 +00:00

12 lines
385 B
LLVM

; RUN: verify-uselistorder < %s
; 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)
; 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)