From 4cc95195f47b6545e71f8bbe30e594cde8b3aaa0 Mon Sep 17 00:00:00 2001 From: Jeremy Rand Date: Thu, 12 May 2016 20:39:27 -0400 Subject: [PATCH] Get rid of the .globl directive in the assembly output. --- lib/Target/WDC65816/MCTargetDesc/WDC65816MCAsmInfo.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/Target/WDC65816/MCTargetDesc/WDC65816MCAsmInfo.cpp b/lib/Target/WDC65816/MCTargetDesc/WDC65816MCAsmInfo.cpp index ffa950ce..ba4ea742 100644 --- a/lib/Target/WDC65816/MCTargetDesc/WDC65816MCAsmInfo.cpp +++ b/lib/Target/WDC65816/MCTargetDesc/WDC65816MCAsmInfo.cpp @@ -30,6 +30,9 @@ WDC65816MCAsmInfo::WDC65816MCAsmInfo(StringRef TT) { // Diable the ".size" parameter HasDotTypeDotSizeDirective = false; + // WDC_TODO: Can we just disable this? + GlobalDirective = "; Global symbol - "; + #if 0 // WDC_TODO - Do I need any of this? Data16bitsDirective = "\t.half\t"; Data32bitsDirective = "\t.word\t";