brintos

brintos / llvm-project-archived public Read only

0
0
Text · 553 B · b9b520e Raw
26 lines · plain
1# RUN: not llc -mtriple=x86_64 -run-pass none -o /dev/null %s 2>&1 | FileCheck %s2 3--- |4 5  define void @test(ptr %a) {6  entry2:7    %b = load i32, ptr %a8    %c = add i32 %b, 19    store i32 %c, ptr %a10    ret void11  }12 13...14---15name:            test16tracksRegLiveness: true17liveins:18  - { reg: '$rdi' }19body: |20  bb.0.entry2:21    liveins: $rdi22  ; CHECK: [[@LINE+1]]:91: expected ',' before the next machine memory operand23    INC32m killed $rdi, 1, _, 0, _, implicit-def dead $eflags :: (store (s32) into %ir.a) (load (s32) from %ir.a)24    RET6425...26