• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

タグ
未設定

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

GNU Binutils with patches for OS216


コミットメタ情報

リビジョンb05e64e5fe26950eba7f895b31019b8cc598b42d (tree)
日時2006-07-25 05:10:48
作者Frederic Riss <frederic.riss@st.c...>
コミッターFrederic Riss

ログメッセージ

2006-07-21 Frederic Riss <frederic.riss@st.com>

* regcache.c (struct regcache): Make register_valid_p a signed
char
array.

変更サマリ

差分

--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
1+2006-07-21 Frederic Riss <frederic.riss@st.com>
2+
3+ * regcache.c (struct regcache): Make register_valid_p a signed char
4+ array.
5+
16 2006-07-24 Jan Kratochvil <jan.kratochvil@redhat.com>
27 Daniel Jacobowitz <dan@codesourcery.com>
38
--- a/gdb/regcache.c
+++ b/gdb/regcache.c
@@ -186,7 +186,11 @@ struct regcache
186186 full [0 .. NUM_REGS + NUM_PSEUDO_REGS) while a read/write
187187 register cache can only hold [0 .. NUM_REGS). */
188188 gdb_byte *registers;
189- gdb_byte *register_valid_p;
189+ /* Register cache status:
190+ register_valid_p[REG] == 0 if REG value is not in the cache
191+ > 0 if REG value is in the cache
192+ < 0 if REG value is permanently unavailable */
193+ signed char *register_valid_p;
190194 /* Is this a read-only cache? A read-only cache is used for saving
191195 the target's register state (e.g, across an inferior function
192196 call or just before forcing a function return). A read-only