summaryrefslogtreecommitdiff
path: root/lib/xray
diff options
context:
space:
mode:
authorReid Kleckner <rnk@google.com>2018-12-28 18:53:00 +0000
committerReid Kleckner <rnk@google.com>2018-12-28 18:53:00 +0000
commit51d3c2337f6664983d9d7d3b8587cdb18874da7d (patch)
tree18893b26d197f803856728ea44aa61249be030de /lib/xray
parentd5bfa8c9479fda418e52ea0d29ccaa45bfb19da1 (diff)
downloadcompiler-rt-51d3c2337f6664983d9d7d3b8587cdb18874da7d.tar.gz
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. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@350132 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/xray')
-rw-r--r--lib/xray/xray_trampoline_x86_64.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/xray/xray_trampoline_x86_64.S b/lib/xray/xray_trampoline_x86_64.S
index 9dffae048..52985ffd1 100644
--- a/lib/xray/xray_trampoline_x86_64.S
+++ b/lib/xray/xray_trampoline_x86_64.S
@@ -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"
//===----------------------------------------------------------------------===//