mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-17 03:30:28 +00:00
ed119820f2
allow escaped octal character sequences. The patch was discussed in Phabricator. See: http://llvm-reviews.chandlerc.com/D1289 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190089 91177308-0d34-0410-b5e6-96231b3b80d8
10 lines
250 B
ArmAsm
10 lines
250 B
ArmAsm
# RUN: llvm-mc -triple i386-unknown-unknown %s | FileCheck %s
|
|
|
|
.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"
|