Skip to content

Commit 0f39fc6

Browse files
fixup! use createFromExtMap
1 parent 98763df commit 0f39fc6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

llvm/lib/TargetParser/RISCVISAInfo.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,8 @@ void RISCVISAInfo::printEnabledExtensions(
150150
}
151151

152152
unsigned XLen = IsRV64 ? 64 : 32;
153-
outs() << "\nISA String: " << RISCVISAInfo(XLen, FullExtMap).toString();
153+
outs() << "\nISA String: "
154+
<< RISCVISAInfo::createFromExtMap(XLen, FullExtMap).toString();
154155
}
155156

156157
static bool stripExperimentalPrefix(StringRef &Ext) {

0 commit comments

Comments
 (0)