X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-psi;a=blobdiff_plain;f=src%2Fparser.re;h=9d8288eb90287e523c08e91f81b39827c0f00834;hp=a5f271d328c000c537764ebcef9799eafb31187b;hb=440ff658995f1378fd74c0101ff6c2b4951ffdf9;hpb=35ae2559447092572209f8b237460ceb551293ff diff --git a/src/parser.re b/src/parser.re index a5f271d..9d8288e 100644 --- a/src/parser.re +++ b/src/parser.re @@ -386,14 +386,6 @@ struct psi_plist *psi_parser_scan(struct psi_parser *P, struct psi_parser_input "long" { NEWTOKEN(PSI_T_LONG); goto start; } "float" { NEWTOKEN(PSI_T_FLOAT); goto start; } "double" { NEWTOKEN(PSI_T_DOUBLE); goto start; } - "int8_t" { NEWTOKEN(PSI_T_INT8); goto start; } - "uint8_t" { NEWTOKEN(PSI_T_UINT8); goto start; } - "int16_t" { NEWTOKEN(PSI_T_INT16); goto start; } - "uint16_t" { NEWTOKEN(PSI_T_UINT16); goto start; } - "int32_t" { NEWTOKEN(PSI_T_INT32); goto start; } - "uint32_t" { NEWTOKEN(PSI_T_UINT32); goto start; } - "int64_t" { NEWTOKEN(PSI_T_INT64); goto start; } - "uint64_t" { NEWTOKEN(PSI_T_UINT64); goto start; } "unsigned" { NEWTOKEN(PSI_T_UNSIGNED); goto start; } "signed" { NEWTOKEN(PSI_T_SIGNED); goto start; } 'IF' { NEWTOKEN(PSI_T_IF); goto start; }