Andrew Geissler | 84ad7c5 | 2020-06-27 00:00:16 -0500 | [diff] [blame] | 1 | From 3f65f0432d42f4d469fbb10828f1683cd30a5d84 Mon Sep 17 00:00:00 2001 |
Brad Bishop | 26bdd44 | 2019-08-16 17:08:17 -0400 | [diff] [blame] | 2 | From: Nagaraju Mekala <nmekala@xilix.com> |
| 3 | Date: Fri, 19 Oct 2018 14:26:25 +0530 |
Andrew Geissler | 84ad7c5 | 2020-06-27 00:00:16 -0500 | [diff] [blame] | 4 | Subject: [PATCH 53/63] Fixed the missing stack adjustment in prologue of |
Brad Bishop | 26bdd44 | 2019-08-16 17:08:17 -0400 | [diff] [blame] | 5 | modsi3 function |
| 6 | |
| 7 | --- |
| 8 | libgcc/config/microblaze/modsi3.S | 1 + |
| 9 | 1 file changed, 1 insertion(+) |
| 10 | |
| 11 | diff --git a/libgcc/config/microblaze/modsi3.S b/libgcc/config/microblaze/modsi3.S |
Andrew Geissler | 84ad7c5 | 2020-06-27 00:00:16 -0500 | [diff] [blame] | 12 | index 7e61453..b0e6cad 100644 |
Brad Bishop | 26bdd44 | 2019-08-16 17:08:17 -0400 | [diff] [blame] | 13 | --- a/libgcc/config/microblaze/modsi3.S |
| 14 | +++ b/libgcc/config/microblaze/modsi3.S |
| 15 | @@ -119,6 +119,7 @@ $LaRETURN_HERE: |
| 16 | lwi r30,r1,8 |
| 17 | lwi r31,r1,12 |
| 18 | rtsd r15,8 |
| 19 | + addik r1,r1,16 |
| 20 | #endif |
| 21 | .end __modsi3 |
| 22 | .size __modsi3, . - __modsi3 |
| 23 | -- |
| 24 | 2.7.4 |
| 25 | |