diff options
author | Tudor Florea <tudor.florea@enea.com> | 2015-10-08 22:46:13 +0200 |
---|---|---|
committer | Tudor Florea <tudor.florea@enea.com> | 2015-10-08 22:46:13 +0200 |
commit | 8d89651ef729e560ad96dcfc002fcde6ff7f923b (patch) | |
tree | eb5be01c25f735d12fe9881ee6327c9b7e8bbe39 /meta-linaro-toolchain/recipes-devtools/gcc/gcc-linaro-4.9/0051-eabispe.patch | |
download | meta-linaro-dizzy-enea.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.patch | 23 |
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 @@ | |||
1 | Upstream-Status: Pending | ||
2 | |||
3 | Taken from http://gcc.gnu.org/ml/gcc-patches/2014-04/msg02064.html | ||
4 | |||
5 | 2014-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 | |||
12 | diff --git a/gcc/dwarf2cfi.c b/gcc/dwarf2cfi.c | ||
13 | index 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 | |||