[compiler-rt] r350132 - Speculative fix for xray assembler error on MachO since r349976
Reid Kleckner via llvm-commits
llvm-commits at lists.llvm.org
Fri Dec 28 10:53:00 PST 2018
Author: rnk
Date: Fri Dec 28 10:53:00 2018
New Revision: 350132
URL: http://llvm.org/viewvc/llvm-project?rev=350132&view=rev
Log:
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.
Modified:
compiler-rt/trunk/lib/xray/xray_trampoline_x86_64.S
Modified: compiler-rt/trunk/lib/xray/xray_trampoline_x86_64.S
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/xray/xray_trampoline_x86_64.S?rev=350132&r1=350131&r2=350132&view=diff
==============================================================================
--- compiler-rt/trunk/lib/xray/xray_trampoline_x86_64.S (original)
+++ compiler-rt/trunk/lib/xray/xray_trampoline_x86_64.S Fri Dec 28 10:53:00 2018
@@ -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"
//===----------------------------------------------------------------------===//
More information about the llvm-commits
mailing list