From: Vinson Lee Date: Fri, 2 Apr 2010 05:29:23 +0000 (-0700) Subject: progs/gallium/unit: Move declaration before code. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=36ed9a7f1356bc9c7c83388500ed8fbda8bff8aa;p=mesa.git progs/gallium/unit: Move declaration before code. Fixes SCons build. --- diff --git a/progs/gallium/unit/u_half_test.c b/progs/gallium/unit/u_half_test.c index 0486f731acd..9e3392e6d62 100644 --- a/progs/gallium/unit/u_half_test.c +++ b/progs/gallium/unit/u_half_test.c @@ -14,8 +14,9 @@ main(int argc, char **argv) { half h = (half) i; union fi f; + half rh; f.ui = util_half_to_floatui(h); - half rh = util_floatui_to_half(f.ui); + rh = util_floatui_to_half(f.ui); if(h != rh) { printf("Roundtrip failed: %x -> %x = %f -> %x\n", h, f.ui, f.f, rh);