mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-16 05:01:56 +00:00
0a448fbca3
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
7 lines
188 B
LLVM
7 lines
188 B
LLVM
; RUN: not llvm-as < %s -disable-output 2>&1 | FileCheck %s
|
|
; CHECK: error: invalid basic block in uselistorder_bb
|
|
define void @foo() {
|
|
unreachable
|
|
}
|
|
uselistorder_bb @foo, %bb, { 1, 0 }
|