mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
4875e011e1
Use the MCStreamer base implementations for file ID tracking instead of overriding them as no-ops. Avoids assertions when streaming Dwarf debug info, and fixes ASM parsing of loc and file directives. llvm-svn: 211282
16 lines
392 B
ArmAsm
16 lines
392 B
ArmAsm
# RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s
|
|
# RUN: llvm-mc -triple i386-unknown-unknown %s -filetype=null
|
|
|
|
.file 1 "hello"
|
|
# CHECK: .file 1 "hello"
|
|
.loc 1
|
|
.loc 1 2
|
|
# CHECK: .loc 1 2 0
|
|
.loc 1 2 3
|
|
# CHECK: .loc 1 2 3
|
|
.loc 1 2 discriminator 1
|
|
# CHECK: 1 2 0 discriminator 1
|
|
.loc 1 2 0 isa 3
|
|
# CHECK: 1 2 0 isa 3
|
|
.loc 1 0
|