|
From: <sv...@va...> - 2014-07-04 22:52:09
|
Author: philippe
Date: Fri Jul 4 22:52:01 2014
New Revision: 14130
Log:
Small comment fix for the UInt* cfsi_m index : 4 instead of 3
Modified:
trunk/coregrind/m_debuginfo/priv_storage.h
Modified: trunk/coregrind/m_debuginfo/priv_storage.h
==============================================================================
--- trunk/coregrind/m_debuginfo/priv_storage.h (original)
+++ trunk/coregrind/m_debuginfo/priv_storage.h Fri Jul 4 22:52:01 2014
@@ -841,7 +841,7 @@
cfsi_base[i] is given
by ((UChar*) cfsi_m_ix)[i] if sizeof_ix == 1
by ((UShort*)cfsi_m_ix)[i] if sizeof_ix == 2
- by ((UInt*) cfsi_m_ix)[i] if sizeof_ix == 3.
+ by ((UInt*) cfsi_m_ix)[i] if sizeof_ix == 4.
The end of the code range starting at cfsi_base[i] is given by
cfsi_base[i+1]-1 (or cfsi_maxavma for cfsi_base[cfsi_used-1]).
|