mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
7838818ad7
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
12 lines
385 B
LLVM
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)
|