use LABEL_STARTER
This commit is contained in:
parent
15d1e95d31
commit
7fed954836
1 changed files with 2 additions and 3 deletions
|
@ -1,12 +1,11 @@
|
|||
/* VAX descriptor table for ACK target optimizer,
|
||||
* Prolog prototype
|
||||
*/
|
||||
|
||||
/* tunable constants-> */
|
||||
|
||||
MAXOP 4;
|
||||
MAXLINELEN 50;
|
||||
LABEL_STARTER 'L';
|
||||
LABEL_STARTER 'I';
|
||||
OPC_TERMINATOR ' ';
|
||||
|
||||
%%;
|
||||
|
@ -18,7 +17,7 @@ CONST {VAL[0] == '$'};
|
|||
NUM,NUM1 {is_number(VAL)};
|
||||
REG {is_register(VAL)};
|
||||
SREG {is_scratchreg(VAL)};
|
||||
LAB,LAB2 {VAL[0] == 'L'};
|
||||
LAB,LAB2 {VAL[0] == LABEL_STARTER};
|
||||
A,B {no_side_effects(VAL) };
|
||||
X,Y,LOG {TRUE};
|
||||
|
||||
|
|
Loading…
Reference in a new issue