Hoist assertion in target_stack::unpush
authorTom Tromey <tom@tromey.com>
Tue, 5 Feb 2019 11:59:11 +0000 (04:59 -0700)
committerTom Tromey <tom@tromey.com>
Tue, 5 Feb 2019 13:36:48 +0000 (06:36 -0700)
commit1688cb2916e7bc46c92dd6f5ac2ba0da6c832274
treea676543712ea10d6861a9e1d1fcbbc6949ed4532
parent4dcfcfe0638d8e946b05fe51714c7d5b85b693c1
Hoist assertion in target_stack::unpush

I noticed that target_stack::unpush first uses the target "t", then
later asserts that it is non-NULL:

  strata stratum = t->stratum ();
[...]
  gdb_assert (t != NULL);

This is backwards, though, as the assertion must come first.

gdb/ChangeLog
2019-02-05  Tom Tromey  <tom@tromey.com>

* target.c (target_stack::unpush): Move assertion earlier.
gdb/ChangeLog
gdb/target.c