projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fbfa44f
)
2010-06-04 Hui Zhu <teawater@gmail.com>
author
Hui Zhu
<teawater@gmail.com>
Fri, 4 Jun 2010 02:39:16 +0000
(
02:39
+0000)
committer
Hui Zhu
<teawater@gmail.com>
Fri, 4 Jun 2010 02:39:16 +0000
(
02:39
+0000)
* dwarf2loc.c (disassemble_dwarf_expression): Change ul to l.
gdb/ChangeLog
patch
|
blob
|
history
gdb/dwarf2loc.c
patch
|
blob
|
history
diff --git
a/gdb/ChangeLog
b/gdb/ChangeLog
index 1df82061cc666141301de0cf0d3b556f1c98079d..69937915de557557a7146e6918c727fff2939a20 100644
(file)
--- a/
gdb/ChangeLog
+++ b/
gdb/ChangeLog
@@
-1,3
+1,7
@@
+2010-06-04 Hui Zhu <teawater@gmail.com>
+
+ * dwarf2loc.c (disassemble_dwarf_expression): Change ul to l.
+
2010-06-03 Doug Evans <dje@google.com>
* configure.ac: Don't fail if python is unusable when
diff --git
a/gdb/dwarf2loc.c
b/gdb/dwarf2loc.c
index 30464ff1bd472611e0e2f955833b089750150f1e..b14a4ac9b82841fec8e109dd0c085295f48a1b0a 100644
(file)
--- a/
gdb/dwarf2loc.c
+++ b/
gdb/dwarf2loc.c
@@
-1536,7
+1536,7
@@
disassemble_dwarf_expression (struct ui_file *stream,
fprintf_filtered (stream, " %s", pulongest (ul));
break;
case DW_OP_consts:
- data = read_sleb128 (data, end, &
u
l);
+ data = read_sleb128 (data, end, &l);
fprintf_filtered (stream, " %s", plongest (l));
break;