Skip to content

Commit ff466ea

Browse files
committed
Extend the ILI verifier to include an exception on IL_PI8BROADCAST.
1 parent 753f703 commit ff466ea

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tools/flang2/flang2exe/verify.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,10 @@ is_known_bug(ILI_OP opc, int j, ILI_OP j_opc)
181181
return true;
182182
if (opc == IL_PI8MV_LOW && o == ILIO_KRLNK && r == ILIA_AR)
183183
return true;
184+
#ifdef IL_PI8BROADCAST
185+
if (opc == IL_PI8BROADCAST && o == ILIO_KRLNK && r == ILIA_AR)
186+
return true;
187+
#endif
184188
if (opc == IL_IMUL && o == ILIO_IRLNK && j_opc == IL_KCON)
185189
return true;
186190
if (opc == IL_IKMV && o == ILIO_IRLNK && j_opc == IL_KCON)

0 commit comments

Comments
 (0)