[ARM] Cortex-M4 schedule additions
[llvm-complete.git] / test / CodeGen / MIR / X86 / missing-closing-quote.mir
blob22f8ede90ba2f906562f382c93e5d1f50aedb91d
1 # RUN: not llc -march=x86-64 -run-pass none -o /dev/null %s 2>&1 | FileCheck %s
3 --- |
5   @"quoted name" = external global i32
7   define i32 @test() {
8   entry:
9     %a = load i32, i32* @"quoted name"
10     ret i32 %a
11   }
13 ...
14 ---
15 name:            test
16 body: |
17   bb.0.entry:
18     ; CHECK: [[@LINE+1]]:48: end of machine instruction reached before the closing '"'
19     $rax = MOV64rm $rip, 1, _, @"quoted name, _
20     $eax = MOV32rm killed $rax, 1, _, 0, _
21     RETQ $eax
22 ...