forked from OSchip/llvm-project
[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:
parent
c720b16aa5
commit
4cd6dc5adb
|
@ -710,8 +710,8 @@ struct ImpliedExtsEntry {
|
|||
};
|
||||
|
||||
static constexpr ImpliedExtsEntry ImpliedExts[] = {
|
||||
{"v", ImpliedExtsV},
|
||||
{"zfh", ImpliedExtsZfh},
|
||||
{{"v"}, {ImpliedExtsV}},
|
||||
{{"zfh"}, {ImpliedExtsZfh}},
|
||||
};
|
||||
|
||||
void RISCVISAInfo::updateImplication() {
|
||||
|
|
Loading…
Reference in New Issue