mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-26 05:25:47 +00:00
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:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user