diff options
author | Michael Forney <mforney@mforney.org> | 2024-04-27 15:06:32 -0700 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2024-04-27 15:34:27 -0700 |
commit | f66a661359a39e10af01508ad02429517b8460e3 (patch) | |
tree | bfc5ffdc688f02d8c36416bcfef2ce2727c5443f /qbe.c | |
parent | 4f206ac1ea1b20400fa242f2f3be86237c4ba3bf (diff) |
Store enum constant value in struct decl
Diffstat (limited to 'qbe.c')
-rw-r--r-- | qbe.c | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -163,13 +163,6 @@ mkintconst(unsigned long long n) return v; } -unsigned long long -intconstvalue(struct value *v) -{ - assert(v->kind == VALUE_INTCONST); - return v->u.i; -} - static struct value * mkfltconst(int kind, double n) { |