Speculative fix for xray assembler error on MachO since r349976

This .file directive wasn't doing anything on MachO, and now that's
diagnosed as an error.

llvm-svn: 350132
This commit is contained in:
Reid Kleckner 2018-12-28 18:53:00 +00:00
parent 98743fa77a
commit 1c6dbd6921
1 changed files with 1 additions and 1 deletions

View File

@ -91,10 +91,10 @@
.text
#if !defined(__APPLE__)
.section .text
.file "xray_trampoline_x86.S"
#else
.section __TEXT,__text
#endif
.file "xray_trampoline_x86.S"
//===----------------------------------------------------------------------===//