Revert accidentally committed "MC: Allow targets to stop symbol name quoting"
[oota-llvm.git] / lib / MC / MCSymbol.cpp
index 346a9260709641e015e92118994a65d8dfcb7bb1..ccb9f8def9ef8f31d33ca270b2877bdb198a2010 100644 (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;
   }