From 92c6943fa81145050b083348831a03154be2210c Mon Sep 17 00:00:00 2001 From: lemon Date: Sun, 14 Sep 2025 11:06:06 +0200 Subject: regalloc.c cleanup --- test/reloc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/reloc.c') 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; } -- cgit v1.2.3