From 1c6dbd69211faa8a84fa165ccabd07a2f519ddb5 Mon Sep 17 00:00:00 2001 From: Reid Kleckner Date: Fri, 28 Dec 2018 18:53:00 +0000 Subject: [PATCH] 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 --- compiler-rt/lib/xray/xray_trampoline_x86_64.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler-rt/lib/xray/xray_trampoline_x86_64.S b/compiler-rt/lib/xray/xray_trampoline_x86_64.S index 9dffae04821c..52985ffd19ab 100644 --- a/compiler-rt/lib/xray/xray_trampoline_x86_64.S +++ b/compiler-rt/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" //===----------------------------------------------------------------------===//