mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 05:01:59 +01:00
d5508bfe28
Change the default for `-num-shuffles` to 5 and better document the algorithm in the header docs of `verify-uselistorder`. llvm-svn: 214419
10 lines
310 B
LLVM
10 lines
310 B
LLVM
; RUN: llvm-as < %s | llvm-dis | FileCheck %s
|
|
; RUN: verify-uselistorder %s -preserve-bc-use-list-order
|
|
|
|
; Make sure the address space of forward decls is preserved
|
|
|
|
; CHECK: @a2 = global i8 addrspace(1)* @a
|
|
; CHECK: @a = addrspace(1) global i8 0
|
|
@a2 = global i8 addrspace(1)* @a
|
|
@a = addrspace(1) global i8 0
|