diff options
| author | pbrook <pbrook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-02-08 23:49:59 +0000 |
|---|---|---|
| committer | pbrook <pbrook@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-02-08 23:49:59 +0000 |
| commit | 36fc2b2d66540f1c4ac9f366975766d64b2787ee (patch) | |
| tree | 8b94af91ddef1407138305bf0bfdd0dcfecd6dfd | |
| parent | bfad7f6690912c661aecac2592f64134eec6524d (diff) | |
| download | ppe42-gcc-36fc2b2d66540f1c4ac9f366975766d64b2787ee.tar.gz ppe42-gcc-36fc2b2d66540f1c4ac9f366975766d64b2787ee.zip | |
2007-02-08 Paul Brook <paul@codesourcery.com>
* config/arm/lib1funcs.asm (RETLDM): Pop directly into PC when no
special interworking needed.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@121727 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/config/arm/lib1funcs.asm | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ac5affef4a8..9cb17ffa376 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2007-02-08 Paul Brook <paul@codesourcery.com> + + * config/arm/lib1funcs.asm (RETLDM): Pop directly into PC when no + special interworking needed. + 2007-02-08 Harsha Jagasia <harsha.jagasia@amd.com> * config/i386/xmmintrin.h: Make inclusion of emmintrin.h diff --git a/gcc/config/arm/lib1funcs.asm b/gcc/config/arm/lib1funcs.asm index f0cf5db85e8..d69d1f187d7 100644 --- a/gcc/config/arm/lib1funcs.asm +++ b/gcc/config/arm/lib1funcs.asm @@ -211,7 +211,7 @@ LSYM(Lend_fde): # if defined(__thumb2__) pop\cond {\regs, pc} # else - ldm\cond\dirn sp!, {\regs, lr} + ldm\cond\dirn sp!, {\regs, pc} # endif .endif #endif |

