aboutsummaryrefslogtreecommitdiff
path: root/cc.h
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2021-09-29 14:47:02 -0700
committerMichael Forney <mforney@mforney.org>2021-09-29 14:47:41 -0700
commitdbdab3ac59af6469e715f8ce9dfe3fdfc523cddf (patch)
tree27d82017b08acc1ebdb8b304e4105fac165a5297 /cc.h
parent83e2a1c124a229351df23b336a44db1603862d98 (diff)
Rename uint64_t field of constant union to u
This will prepare us for adding a signed int64_t field called i.
Diffstat (limited to 'cc.h')
-rw-r--r--cc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cc.h b/cc.h
index 021801e..9597d6e 100644
--- a/cc.h
+++ b/cc.h
@@ -327,7 +327,7 @@ struct expr {
struct decl *decl;
} ident;
union {
- uint64_t i;
+ uint64_t u;
double f;
} constant;
struct {