diff options
author | Michael Forney <mforney@mforney.org> | 2019-04-24 22:18:49 -0700 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2019-04-24 22:32:22 -0700 |
commit | 0e9f74cb67f2227f888e9a127624f77d83aee270 (patch) | |
tree | f57b430e46aa1e8a9199406740cdad13bec32599 /cc.h | |
parent | b38f2d82a80ea203f37c88746639a0efa8b66fbf (diff) |
Use enum type for expr->builtin.kind
Diffstat (limited to 'cc.h')
-rw-r--r-- | cc.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -353,7 +353,7 @@ struct expr { struct expr *exprs; } comma; struct { - int kind; + enum builtinkind kind; struct expr *arg; } builtin; struct value *temp; |