You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by va...@apache.org on 2007/07/16 06:24:12 UTC

svn commit: r556502 - /harmony/enhanced/drlvm/trunk/vm/jitrino/src/codegenerator/ia32/Ia32CodeEmitter.cpp

Author: varlax
Date: Sun Jul 15 21:24:09 2007
New Revision: 556502

URL: http://svn.apache.org/viewvc?view=rev&rev=556502
Log:
Fixed compilation warning after [r556007] HARMONY-2114

Modified:
    harmony/enhanced/drlvm/trunk/vm/jitrino/src/codegenerator/ia32/Ia32CodeEmitter.cpp

Modified: harmony/enhanced/drlvm/trunk/vm/jitrino/src/codegenerator/ia32/Ia32CodeEmitter.cpp
URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/vm/jitrino/src/codegenerator/ia32/Ia32CodeEmitter.cpp?view=diff&rev=556502&r1=556501&r2=556502
==============================================================================
--- harmony/enhanced/drlvm/trunk/vm/jitrino/src/codegenerator/ia32/Ia32CodeEmitter.cpp (original)
+++ harmony/enhanced/drlvm/trunk/vm/jitrino/src/codegenerator/ia32/Ia32CodeEmitter.cpp Sun Jul 15 21:24:09 2007
@@ -351,7 +351,7 @@
                 IRPrinter::printInst(Log::out(), inst); Log::out()<<std::endl;
             }
             if (parentEntry!=NULL) { //check to avoid crash in release mode
-                MethodMarkerPseudoInst* endMarker = (MethodMarkerPseudoInst*)inst;
+                UNUSED MethodMarkerPseudoInst* endMarker = (MethodMarkerPseudoInst*)inst;
                 assert(parentEntry->method == endMarker->getMethodDesc()->getMethodHandle());
                 parentEntry = parentEntry->parentEntry;
             }