Browse Source

split Tbase into individual types

master
Ian Piumarta 3 months ago
parent
commit
07fb5f758f
1 changed files with 1 additions and 3 deletions
  1. +1
    -3
      main.leg

+ 1
- 3
main.leg View File

@ -1,6 +1,6 @@
# main.leg -- C parser + interpreter
#
# Last edited: 2025-01-26 12:12:15 by piumarta on zora
# Last edited: 2025-01-26 12:13:05 by piumarta on zora
%{
;
@ -126,8 +126,6 @@ struct Return { type_t _type; oop value; };
struct Continue { type_t _type; };
struct Break { type_t _type; };
typedef enum { T_INT = 0, T_FLOAT, T_VOID, T_ETC } base_t;
struct Tvoid { type_t _type; };
struct Tchar { type_t _type; };
struct Tshort { type_t _type; };

Loading…
Cancel
Save