From 7df7074b1269351a55b7de7f3ed4f82b936a1b86 Mon Sep 17 00:00:00 2001 From: Julian Seward Date: Mon, 6 Mar 2006 12:41:39 +0000 Subject: [PATCH] gcc-2.96 build fix git-svn-id: svn://svn.valgrind.org/vex/branches/VEX_3_1_BRANCH@1581 --- VEX/priv/ir/irdefs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VEX/priv/ir/irdefs.c b/VEX/priv/ir/irdefs.c index 5816f0f391..e217ee64cb 100644 --- a/VEX/priv/ir/irdefs.c +++ b/VEX/priv/ir/irdefs.c @@ -75,8 +75,8 @@ void ppIRType ( IRType ty ) void ppIRConst ( IRConst* con ) { - vassert(sizeof(ULong) == sizeof(Double)); union { ULong i64; Double f64; } u; + vassert(sizeof(ULong) == sizeof(Double)); switch (con->tag) { case Ico_U1: vex_printf( "%d:I1", con->Ico.U1 ? 1 : 0); break; case Ico_U8: vex_printf( "0x%x:I8", (UInt)(con->Ico.U8)); break; -- 2.47.2