summaryrefslogtreecommitdiff
path: root/lib/MC/MCAsmInfoCOFF.cpp
diff options
context:
space:
mode:
authorMichael J. Spencer <bigcheesegs@gmail.com>2011-11-29 18:00:06 +0000
committerMichael J. Spencer <bigcheesegs@gmail.com>2011-11-29 18:00:06 +0000
commit116bc795da4b10773235a89cc251d31651b3851d (patch)
tree27fb7aa0bd1b7d7fb8a67ea22da0484f158ec6a2 /lib/MC/MCAsmInfoCOFF.cpp
parentb0436a73054fe676b216a0cf872d1fc433125c62 (diff)
downloadllvm-116bc795da4b10773235a89cc251d31651b3851d.tar.gz
llvm-116bc795da4b10773235a89cc251d31651b3851d.tar.bz2
llvm-116bc795da4b10773235a89cc251d31651b3851d.tar.xz
MC/X86/COFF: Allow quotes in names when targeting MS/Windows,
as MC is the only assembler we support. This splits MS/Windows and GNU/Windows ASM infos into two seperate classes. While there is currently only one difference, full MS C++ ABI support will require many more. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145409 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/MC/MCAsmInfoCOFF.cpp')
-rw-r--r--lib/MC/MCAsmInfoCOFF.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/MC/MCAsmInfoCOFF.cpp b/lib/MC/MCAsmInfoCOFF.cpp
index 434d9103a7..6d34801f5c 100644
--- a/lib/MC/MCAsmInfoCOFF.cpp
+++ b/lib/MC/MCAsmInfoCOFF.cpp
@@ -38,3 +38,11 @@ MCAsmInfoCOFF::MCAsmInfoCOFF() {
SupportsDataRegions = false;
}
+
+MCAsmInfoMicrosoft::MCAsmInfoMicrosoft() {
+ AllowQuotesInName = true;
+}
+
+MCAsmInfoGNUCOFF::MCAsmInfoGNUCOFF() {
+
+}