]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
gcc-2.96 build fix
authorJulian Seward <jseward@acm.org>
Mon, 6 Mar 2006 12:41:39 +0000 (12:41 +0000)
committerJulian Seward <jseward@acm.org>
Mon, 6 Mar 2006 12:41:39 +0000 (12:41 +0000)
git-svn-id: svn://svn.valgrind.org/vex/branches/VEX_3_1_BRANCH@1581

VEX/priv/ir/irdefs.c

index 5816f0f39143f0343be1dbbb64b620cc22c4233f..e217ee64cbed666669da9ebfdd5774fffa861076 100644 (file)
@@ -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;