You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
396 B
13 lines
396 B
; RUN: llc -print-after=slotindexes < %s 2>&1 | FileCheck %s --check-prefixes=ALL,SI
|
|
; RUN: llc -print-after=slotindexes -print-slotindexes=false < %s 2>&1 | FileCheck %s --check-prefixes=ALL,NOSI
|
|
; REQUIRES: default_triple
|
|
define void @foo(){
|
|
ret void
|
|
}
|
|
|
|
;CHECK: IR Dump {{.*}}
|
|
;CHECK: # Machine code for function foo{{.*}}
|
|
;SI: {{[0-9]+}}B bb.0 (%ir-block.0)
|
|
;NOSI: {{^}}bb.0 (%ir-block.0)
|
|
|