view test/CodeGen/MIR/X86/expected-comma-after-memory-operand.mir @ 128:c347d3398279 default tip

fix
author mir3636
date Wed, 06 Dec 2017 14:37:17 +0900
parents 1172e4bd9c6f
children
line wrap: on
line source

# RUN: not llc -march=x86-64 -run-pass none -o /dev/null %s 2>&1 | FileCheck %s

--- |

  define void @test(i32* %a) {
  entry2:
    %b = load i32, i32* %a
    %c = add i32 %b, 1
    store i32 %c, i32* %a
    ret void
  }

...
---
name:            test
tracksRegLiveness: true
liveins:
  - { reg: '%rdi' }
body: |
  bb.0.entry2:
    liveins: %rdi
  ; CHECK: [[@LINE+1]]:87: expected ',' before the next machine memory operand
    INC32m killed %rdi, 1, _, 0, _, implicit-def dead %eflags :: (store 4 into %ir.a) (load 4 from %ir.a)
    RETQ
...