System notice: In light of the Debian OpenSSL security issue we've regenerated the server keys. See this thread for instructions and the new key fingerprints.

Commit f456f6c6c4ee880fd15b4e18eefc3e30fca05602

Make varobj.c compile with -O2.

Commit diff

gdb/varobj.c

 
884884 if (!PyArg_ParseTuple (item, "sO", &name, &py_v))
885885 error ("Invalid item from the child list");
886886
887 if (!PyObject_IsInstance (py_v, (PyObject *)&value_object_type))
887 if (!PyObject_TypeCheck (py_v, &value_object_type))
888888 error ("child list has object of invalid type");
889889
890890 v = value_object_to_value (py_v);
toggle raw diff