Add a triple to test/DebugInfo/unconditional-branch.ll (PR23252)
[oota-llvm.git] / test / DebugInfo / X86 / asm-macro-line-number.s
1 # RUN: llvm-mc -g -triple i686-linux-gnu -filetype asm -o - %s | FileCheck %s
2
3 # 1 "reduced.S"
4 # 1 "<built-in>" 1
5 # 1 "reduced.S" 2
6
7  .macro return arg
8   movl %eax, \arg
9   retl
10  .endm
11
12 function:
13  return 0
14
15 # CHECK: .file 2 "reduced.S"
16 # CHECK: .loc 2 8 0
17 # CHECK: movl %eax, 0
18 # CHECK: .loc 2 8 0
19 # CHECK: retl
20