diff options
author | Michael Forney <mforney@mforney.org> | 2021-04-23 12:49:55 -0700 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2021-04-23 12:50:25 -0700 |
commit | 3c17cff77ccee8c90d5ffea02b7cc8f7e828a4b8 (patch) | |
tree | 5fa7029dfc174c8ba0fe31971098739b4512dc27 /targ.c | |
parent | 87eaf587b4f95b3c302ced798a32d44a70db3d02 (diff) |
Make some static data const
Diffstat (limited to 'targ.c')
-rw-r--r-- | targ.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,9 +3,9 @@ #include "util.h" #include "cc.h" -struct target *targ; +const struct target *targ; -static struct target alltargs[] = { +static const struct target alltargs[] = { { .name = "x86_64", .typewchar = &typeint, |