commit | 8b643559d46a03cba2617d3d60aa89f257ca0357 | [log] [tgz] |
---|---|---|
author | Matt Arsenault <Matthew.Arsenault@amd.com> | Tue Jun 09 00:31:39 2015 +0000 |
committer | Matt Arsenault <Matthew.Arsenault@amd.com> | Tue Jun 09 00:31:39 2015 +0000 |
tree | 727df1b429b98230b44eb792aa161bff0f96cdea | |
parent | 003c2e937bcf85d834e3867268536091ee65042b [diff] [blame] |
MC: Add target hook to control symbol quoting llvm-svn: 239370
diff --git a/llvm/lib/MC/MCSectionCOFF.cpp b/llvm/lib/MC/MCSectionCOFF.cpp index 4d6298c..ce0b4f5 100644 --- a/llvm/lib/MC/MCSectionCOFF.cpp +++ b/llvm/lib/MC/MCSectionCOFF.cpp
@@ -94,7 +94,7 @@ break; } assert(COMDATSymbol); - OS << *COMDATSymbol; + COMDATSymbol->print(OS, &MAI); } OS << '\n'; }