brintos

brintos / llvm-project-archived public Read only

0
0
Text · 691 B · aed994e Raw
39 lines · plain
1# RUN: not llc -mtriple=x86_64 -run-pass none -o /dev/null %s 2>&1 | FileCheck %s2 3--- |4 5  define i32 @foo(i32 %a) {6  entry:7    %0 = icmp sle i32 %a, 108    br i1 %0, label %less, label %exit9 10  less:11    ret i32 012 13  exit:14    ret i32 %a15  }16 17...18---19name:            foo20body: |21  bb.0.entry:22  ; CHECK: [[@LINE+1]]:29: expected an integer literal after '('23    successors: %bb.1.less (_), %bb.2.exit(32)24    liveins: $edi25 26    CMP32ri8 $edi, 10, implicit-def $eflags27    JCC_1 %bb.2.exit, 15, implicit killed $eflags28 29  bb.1.less:30    $eax = MOV32r0 implicit-def dead $eflags31    RET64 killed $eax32 33  bb.2.exit:34    liveins: $edi35 36    $eax = COPY killed $edi37    RET64 killed $eax38...39