We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe60d2d commit b4e8e63Copy full SHA for b4e8e63
llvm/lib/TargetParser/AArch64TargetParser.cpp
@@ -190,7 +190,7 @@ void AArch64::ExtensionSet::enable(ArchExtKind E) {
190
if (Enabled.test(E))
191
return;
192
193
- LLVM_DEBUG(llvm::dbgs() << "Enable " << lookupExtensionByID(E).Name << "\n");
+ LLVM_DEBUG(llvm::dbgs() << "Enable " << lookupExtensionByID(E).UserVisibleName << "\n");
194
195
Touched.set(E);
196
Enabled.set(E);
@@ -231,7 +231,7 @@ void AArch64::ExtensionSet::disable(ArchExtKind E) {
231
if (!Enabled.test(E))
232
233
234
- LLVM_DEBUG(llvm::dbgs() << "Disable " << lookupExtensionByID(E).Name << "\n");
+ LLVM_DEBUG(llvm::dbgs() << "Disable " << lookupExtensionByID(E).UserVisibleName << "\n");
235
236
237
Enabled.reset(E);
0 commit comments