1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00
llvm-mirror/test/Assembler/alias-use-list-order.ll
Duncan P. N. Exon Smith 56ea569496 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.

llvm-svn: 216025
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)