brintos

brintos / llvm-project-archived public Read only

0
0
Text · 469 B · 51ef958 Raw
23 lines · plain
1# RUN: not llc -mtriple=x86_64 -run-pass none -o /dev/null %s 2>&1 | FileCheck %s2 3--- |4 5  @"quoted name" = external global i326 7  define i32 @test() {8  entry:9    %a = load i32, ptr @"quoted name"10    ret i32 %a11  }12 13...14---15name:            test16body: |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    RET64 $eax22...23