[RISCV] Add more curly braces to constexpr array initialization to hopefully appease gcc 5.

Build bot failure found after D115668.
This commit is contained in:
Craig Topper 2021-12-14 21:44:23 -08:00
parent c720b16aa5
commit 4cd6dc5adb
1 changed files with 2 additions and 2 deletions

View File

@ -710,8 +710,8 @@ struct ImpliedExtsEntry {
};
static constexpr ImpliedExtsEntry ImpliedExts[] = {
{"v", ImpliedExtsV},
{"zfh", ImpliedExtsZfh},
{{"v"}, {ImpliedExtsV}},
{{"zfh"}, {ImpliedExtsZfh}},
};
void RISCVISAInfo::updateImplication() {