13 lines · plain
1; RUN: llc -print-after=slotindexes < %s 2>&1 | FileCheck %s --check-prefixes=CHECK,SI 2; RUN: llc -print-after=slotindexes -print-slotindexes=false < %s 2>&1 | FileCheck %s --check-prefixes=CHECK,NOSI3; REQUIRES: default_triple4define void @foo(){5 ret void6}7 8;CHECK: IR Dump {{.*}}9;CHECK: # Machine code for function foo{{.*}}10;SI: {{[0-9]+}}B bb.0 (%ir-block.0)11;NOSI: {{^}}bb.0 (%ir-block.0)12 13