mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +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
11 lines
312 B
ArmAsm
11 lines
312 B
ArmAsm
# RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s
|
|
# RUN: llvm-mc -triple i386-unknown-unknown %s -filetype=null
|
|
|
|
.file "hello"
|
|
.file 1 "worl\144" # "\144" is "d"
|
|
.file 2 "directory" "file"
|
|
|
|
# CHECK: .file "hello"
|
|
# CHECK: .file 1 "world"
|
|
# CHECK: .file 2 "directory" "file"
|