• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# RUN: not llc -march=x86-64 -start-after branch-folder -stop-after branch-folder -o /dev/null %s 2>&1 | FileCheck %s
2
3--- |
4
5  @G = external global i32
6
7  define i32 @inc() {
8  entry:
9    %a = load i32, i32* @G
10    %b = add i32 %a, 1
11    ret i32 %b
12  }
13
14...
15---
16name: inc
17body: |
18  bb.0.entry:
19  ; CHECK: [[@LINE+1]]:45: use of undefined target flag 'x86-test'
20    %rax = MOV64rm %rip, 1, _, target-flags(x86-test) @G, _
21    %eax = MOV32rm killed %rax, 1, _, 0, _
22    %eax = INC32r killed %eax, implicit-def dead %eflags
23    RETQ %eax
24...
25