You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by xl...@apache.org on 2009/06/29 10:29:01 UTC

svn commit: r789255 - /harmony/enhanced/drlvm/trunk/vm/jitrino/src/jet/structs.h

Author: xli
Date: Mon Jun 29 08:29:01 2009
New Revision: 789255

URL: http://svn.apache.org/viewvc?rev=789255&view=rev
Log:
HARMONY-6251: [drlvm][jit][jet] A typo in MethInfo::meth_fname_sig

Modified:
    harmony/enhanced/drlvm/trunk/vm/jitrino/src/jet/structs.h

Modified: harmony/enhanced/drlvm/trunk/vm/jitrino/src/jet/structs.h
URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/vm/jitrino/src/jet/structs.h?rev=789255&r1=789254&r2=789255&view=diff
==============================================================================
--- harmony/enhanced/drlvm/trunk/vm/jitrino/src/jet/structs.h (original)
+++ harmony/enhanced/drlvm/trunk/vm/jitrino/src/jet/structs.h Mon Jun 29 08:29:01 2009
@@ -539,7 +539,7 @@
     {
         if (m_fname_sig.empty()) {
             m_fname_sig = meth_fname();
-            m_fname += meth_sig();
+            m_fname_sig += meth_sig();
         }
         return m_fname_sig.c_str();
     }