mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
70a99e77f2
This improves readability of Windows path string literals in LLVM IR. The LLVM assembler has supported \\ in IR strings for a long time, but the lexer doesn't tolerate escaped quotes, so they have to be printed as \22 for now. llvm-svn: 374415
8 lines
259 B
LLVM
8 lines
259 B
LLVM
; Make sure that llvm-as/llvm-dis properly assemble/disassemble the
|
|
; source_filename.
|
|
|
|
; RUN: llvm-as < %s | llvm-dis | FileCheck %s
|
|
|
|
; CHECK: source_filename = "C:\\path\\with\\backslashes\\test.cc"
|
|
source_filename = "C:\\path\\with\5Cbackslashes\\test.cc"
|