]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Fix incorrect variable type (IRTemp->IRType)
authorIvo Raisr <ivosh@ivosh.net>
Mon, 27 Feb 2017 10:16:50 +0000 (10:16 +0000)
committerIvo Raisr <ivosh@ivosh.net>
Mon, 27 Feb 2017 10:16:50 +0000 (10:16 +0000)
n-i-bz

git-svn-id: svn://svn.valgrind.org/vex/trunk@3306

VEX/priv/ir_defs.c

index 4dfb8a26224adc2a016363b0b56b25b8ad6ec4ca..170d7ba65c67e39c707acef5b0c11ec4118c0c5d 100644 (file)
@@ -4362,7 +4362,7 @@ void tcStmt ( const IRSB* bb, const IRStmt* stmt, IRType gWordTy )
                                       ":: guest word type");
          if (typeOfIRExpr(tyenv, lg->alt) != typeOfIRTemp(tyenv, lg->dst))
              sanityCheckFail(bb,stmt,"IRStmt.LoadG: dst/alt type mismatch");
-         IRTemp cvtRes = Ity_INVALID, cvtArg = Ity_INVALID;
+         IRType cvtRes = Ity_INVALID, cvtArg = Ity_INVALID;
          typeOfIRLoadGOp(lg->cvt, &cvtRes, &cvtArg);
          if (cvtRes != typeOfIRTemp(tyenv, lg->dst))
             sanityCheckFail(bb,stmt,"IRStmt.LoadG: dst/loaded type mismatch");