• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

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

GNU Binutils with patches for OS216


Commit MetaInfo

Revisionc93a350722500593dffe960f89c8e7cded819540 (tree)
Time1991-04-19 16:06:13
AuthorJim Kingdon <jkingdon@engr...>
CommiterJim Kingdon

Log Message

* i386-pinsn.c (OP_E): Change %d to 0x%x for consistency.

Change Summary

Incremental Difference

--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,7 @@
11 Thu Apr 18 19:49:10 1991 Jim Kingdon (kingdon at cygint.cygnus.com)
22
3+ * i386-pinsn.c (OP_E): Change %d to 0x%x for consistency.
4+
35 * putenv.c: New file
46 Makefile.dist: Add it to $(OBS).
57
--- a/gdb/i386-pinsn.c
+++ b/gdb/i386-pinsn.c
@@ -1505,7 +1505,7 @@ OP_E (bytemode)
15051505
15061506 if (mod != 0 || rm == 5 || (havesib && base == 5))
15071507 {
1508- sprintf (scratchbuf, "%d", disp);
1508+ sprintf (scratchbuf, "0x%x", disp);
15091509 oappend (scratchbuf);
15101510 }
15111511