Revert accidentally committed "MC: Allow targets to stop symbol name quoting"

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@235672 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Matt Arsenault
2015-04-23 23:34:51 +00:00
parent 784f73714b
commit b638e142b4
5 changed files with 5 additions and 17 deletions

View File

@@ -51,7 +51,7 @@ void MCSymbol::print(raw_ostream &OS) const {
// some targets support quoting names with funny characters. If the name
// contains a funny character, then print it quoted.
StringRef Name = getName();
if (NoQuoting || !NameNeedsQuoting(Name)) {
if (!NameNeedsQuoting(Name)) {
OS << Name;
return;
}