aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/reloc.c
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2025-09-14 11:06:06 +0200
committerlemon <lsof@mailbox.org>2025-09-14 11:07:11 +0200
commit92c6943fa81145050b083348831a03154be2210c (patch)
treec15a17756c04f87ed1ad00ca510273cc348590af /test/reloc.c
parenta95e385217841da91c3e44674dbaa95fb613a153 (diff)
regalloc.c cleanup
Diffstat (limited to 'test/reloc.c')
-rw-r--r--test/reloc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/reloc.c b/test/reloc.c
index 70cba28..2851cdb 100644
--- a/test/reloc.c
+++ b/test/reloc.c
@@ -2,6 +2,6 @@
float get_value(unsigned x)
{
- static const float values [] = {1.1f, 1.2f, 1.3f, 1.4f};
- return x < 4 ? values[x] : 0.0f;
+ static float values [] = {1.1f, 1.2f, 1.3f, 1.4f};
+ return x < 4 ? values[x] : 0.0f;
}