Fixed check for processor flags usage in case of PHP.
This commit is contained in:
parent
e2f950b15e
commit
6e0fb630d7
1 changed files with 5 additions and 0 deletions
|
@ -476,6 +476,11 @@ int CE_UseLoadFlags (CodeEntry* E)
|
|||
}
|
||||
}
|
||||
|
||||
/* PHP will use all flags */
|
||||
if (E->OPC == OP65_PHP) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
/* Anything else */
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue