File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -150,7 +150,8 @@ void RISCVISAInfo::printEnabledExtensions(
150
150
}
151
151
152
152
unsigned XLen = IsRV64 ? 64 : 32 ;
153
- outs () << " \n ISA String: " << RISCVISAInfo (XLen, FullExtMap).toString ();
153
+ if (auto ISAString = RISCVISAInfo::createFromExtMap (XLen, FullExtMap))
154
+ outs () << " \n ISA String: " << ISAString.get ()->toString ();
154
155
}
155
156
156
157
static bool stripExperimentalPrefix (StringRef &Ext) {
Original file line number Diff line number Diff line change @@ -1080,7 +1080,7 @@ R"(Extensions enabled for the given RISC-V target
1080
1080
Experimental extensions
1081
1081
zicfilp 0.4 'Zicfilp' (Landing pad)
1082
1082
1083
- ISA String: rv64i2p1_zicfilp0p4 )" ;
1083
+ ISA String: rv64i2p1_zicfilp0p4_zicsr2p0 )" ;
1084
1084
// clang-format on
1085
1085
1086
1086
StringMap<StringRef> DescMap;
You can’t perform that action at this time.
0 commit comments