This ticket will act as a watchlist for https://reviews.llvm.org/D33029 ticket.
How does this affect us?
Planned OOVPA_SIG_MATCH macro support to count all OV arrays on compile time will end up result to:
OOVPA_SIG_MATCH(
OV_MATCH(0x04, 'S'),
OV_MATCH(0x0B, 'E'),
OV_MATCH(0x11, 'D'), );
Workaround solution is: (for time being)
OOVPA_SIG_MATCH(
OV_MATCH(0x04, 'S'),
OV_MATCH(0x0B, 'E'),
OV_MATCH(0x11, 'D'),
// add comment line here to force closing parenthesis stay on new line
);
This ticket will act as a watchlist for https://reviews.llvm.org/D33029 ticket.
How does this affect us?
Planned
OOVPA_SIG_MATCHmacro support to count all OV arrays on compile time will end up result to:Workaround solution is: (for time being)