summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/gdb/gdb/fix_for_build_error_internal_error_call.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/gdb/gdb/fix_for_build_error_internal_error_call.patch')
-rw-r--r--meta/recipes-devtools/gdb/gdb/fix_for_build_error_internal_error_call.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/meta/recipes-devtools/gdb/gdb/fix_for_build_error_internal_error_call.patch b/meta/recipes-devtools/gdb/gdb/fix_for_build_error_internal_error_call.patch
deleted file mode 100644
index afb1783c50..0000000000
--- a/meta/recipes-devtools/gdb/gdb/fix_for_build_error_internal_error_call.patch
+++ /dev/null
@@ -1,20 +0,0 @@
1Upstream-Status: Pending
2
3The prototype of function internall_error has changed. And one place in the code was not synced up with the new prototype, causing build error. This patche fixes that.
4
5Nitin A Kamble <nitin.a.kamble@intel.com>
62010/11/12
7
8Index: gdb-7.2/gdb/gdbserver/linux-i386-ipa.c
9===================================================================
10--- gdb-7.2.orig/gdb/gdbserver/linux-i386-ipa.c
11+++ gdb-7.2/gdb/gdbserver/linux-i386-ipa.c
12@@ -178,7 +178,7 @@ supply_static_tracepoint_registers (stru
13 }
14 break;
15 default:
16- internal_error ("unhandled register size: %d",
17+ internal_error (__FILE__, __LINE__, "unhandled register size: %d",
18 i386_st_collect_regmap[i].size);
19 }
20 }