|
From: <sv...@va...> - 2012-09-01 23:48:19
|
florian 2012-09-02 00:48:09 +0100 (Sun, 02 Sep 2012)
New Revision: 12927
Log:
Fix an uninitialised variable found be BEAM.
Modified files:
trunk/coregrind/m_machine.c
Modified: trunk/coregrind/m_machine.c (+1 -0)
===================================================================
--- trunk/coregrind/m_machine.c 2012-09-02 00:43:03 -23:00 (rev 12926)
+++ trunk/coregrind/m_machine.c 2012-09-02 00:48:09 -23:00 (rev 12927)
@@ -1194,6 +1194,7 @@
have_ETF2 = False;
have_ETF3 = False;
have_STCKF = False;
+ have_FPEXT = False;
if (VG_MINIMAL_SETJMP(env_unsup_insn)) {
have_STFLE = False;
} else {
|