From b864405c9b848d6815ac4562fe3680c5ce8d90ff Mon Sep 17 00:00:00 2001 From: Fangrui Song Date: Fri, 11 Apr 2025 22:09:23 -0700 Subject: [PATCH] MCAsmInfo: Remove unused UseParensForDollarSignNames Follow-up to 3acccf042ab8a7b7e663bb2b2fac328d9bf65b38 --- llvm/include/llvm/MC/MCAsmInfo.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/llvm/include/llvm/MC/MCAsmInfo.h b/llvm/include/llvm/MC/MCAsmInfo.h index ec27a47e3682..950dc952d0b4 100644 --- a/llvm/include/llvm/MC/MCAsmInfo.h +++ b/llvm/include/llvm/MC/MCAsmInfo.h @@ -387,10 +387,6 @@ protected: /// directives, e.g. .word foo(got). bool UseParensForSpecifier = false; - /// True if the target uses parens for symbol names starting with - /// '$' character to distinguish them from absolute names. - bool UseParensForDollarSignNames = true; - /// True if the target supports flags in ".loc" directive, false if only /// location is allowed. bool SupportsExtendedDwarfLocDirective = true;