mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
3681929e11
Correct the line information generation for preprocessed assembly. Although we tracked the source information for the macro instantiation, we failed to account for the fact that we were instantiating a macro, which is populated into a new buffer and that the line information would be relative to the definition rather than the actual instantiation location. This could cause the line number associated with the statement to be very high due to wrapping of the difference calculated for the preprocessor line information emitted into the stream. Properly calculate the line for the macro instantiation, referencing the line where the macro is actually used as GCC/gas do. The test case uses x86, though the same problem exists on any other target using the LLVM IAS. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224810 91177308-0d34-0410-b5e6-96231b3b80d8
21 lines
312 B
ArmAsm
21 lines
312 B
ArmAsm
# RUN: llvm-mc -g -triple i686-linux-gnu -filetype asm -o - %s | FileCheck %s
|
|
|
|
# 1 "reduced.S"
|
|
# 1 "<built-in>" 1
|
|
# 1 "reduced.S" 2
|
|
|
|
.macro return arg
|
|
movl %eax, \arg
|
|
retl
|
|
.endm
|
|
|
|
function:
|
|
return 0
|
|
|
|
# CHECK: .file 2 "reduced.S"
|
|
# CHECK: .loc 2 8 0
|
|
# CHECK: movl %eax, 0
|
|
# CHECK: .loc 2 8 0
|
|
# CHECK: retl
|
|
|