summaryrefslogtreecommitdiffstats
path: root/meta-linaro-toolchain/recipes-devtools/gcc/gcc-linaro-4.9/0051-eabispe.patch
diff options
context:
space:
mode:
authorTudor Florea <tudor.florea@enea.com>2015-10-08 22:46:13 +0200
committerTudor Florea <tudor.florea@enea.com>2015-10-08 22:46:13 +0200
commit8d89651ef729e560ad96dcfc002fcde6ff7f923b (patch)
treeeb5be01c25f735d12fe9881ee6327c9b7e8bbe39 /meta-linaro-toolchain/recipes-devtools/gcc/gcc-linaro-4.9/0051-eabispe.patch
downloadmeta-linaro-8d89651ef729e560ad96dcfc002fcde6ff7f923b.tar.gz
initial commit for Enea Linux 5.0 armdizzy-enea
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta-linaro-toolchain/recipes-devtools/gcc/gcc-linaro-4.9/0051-eabispe.patch')
-rw-r--r--meta-linaro-toolchain/recipes-devtools/gcc/gcc-linaro-4.9/0051-eabispe.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/meta-linaro-toolchain/recipes-devtools/gcc/gcc-linaro-4.9/0051-eabispe.patch b/meta-linaro-toolchain/recipes-devtools/gcc/gcc-linaro-4.9/0051-eabispe.patch
new file mode 100644
index 0000000..55e3890
--- /dev/null
+++ b/meta-linaro-toolchain/recipes-devtools/gcc/gcc-linaro-4.9/0051-eabispe.patch
@@ -0,0 +1,23 @@
1Upstream-Status: Pending
2
3Taken from http://gcc.gnu.org/ml/gcc-patches/2014-04/msg02064.html
4
52014-04-30 Cesar Philippidis <cesar@codesourcery.com>
6
7 gcc/
8 * dwarf2cfi.c (dwf_regno): Don't assert reg is a pseudo
9 register.
10
11
12diff --git a/gcc/dwarf2cfi.c b/gcc/dwarf2cfi.c
13index 4180890..40ef0e2 100644
14--- a/gcc/dwarf2cfi.c
15+++ b/gcc/dwarf2cfi.c
16@@ -906,7 +906,6 @@ notice_eh_throw (rtx insn)
17 static inline unsigned
18 dwf_regno (const_rtx reg)
19 {
20- gcc_assert (REGNO (reg) < FIRST_PSEUDO_REGISTER);
21 return DWARF_FRAME_REGNUM (REGNO (reg));
22 }
23