diff options
author | Chung-Lin Tang <cltang@codesourcery.com> | 2012-05-28 00:06:57 +0200 |
---|---|---|
committer | Thomas Schwinge <thomas@codesourcery.com> | 2012-05-28 00:11:06 +0200 |
commit | 65a4de4e06709264e7e06152cd88aaec1f03fd11 (patch) | |
tree | 85fadd93664635e1884e1b1ceaa7de63f17e0ab3 /sysdeps/unix/sysv/linux/sh/sh4 | |
parent | 47e452cf7c13529f168ff2a415107d1c8e9af9c2 (diff) | |
download | glibc-65a4de4e06709264e7e06152cd88aaec1f03fd11.tar.gz glibc-65a4de4e06709264e7e06152cd88aaec1f03fd11.tar.xz glibc-65a4de4e06709264e7e06152cd88aaec1f03fd11.zip |
SH: Add CFI directives.
Diffstat (limited to 'sysdeps/unix/sysv/linux/sh/sh4')
-rw-r--r-- | sysdeps/unix/sysv/linux/sh/sh4/setcontext.S | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/sh/sh4/swapcontext.S | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/sh/sh4/setcontext.S b/sysdeps/unix/sysv/linux/sh/sh4/setcontext.S index a3c0e21e56..161c51d45d 100644 --- a/sysdeps/unix/sysv/linux/sh/sh4/setcontext.S +++ b/sysdeps/unix/sysv/linux/sh/sh4/setcontext.S @@ -132,6 +132,7 @@ ENTRY(__setcontext) mov.l @(oR7,r0), r7 mov.l @(oR8,r0), r8 mov.l @r15+, r0 + cfi_adjust_cfa_offset(-4) jmp @r0 mov.l @r15+, r0 diff --git a/sysdeps/unix/sysv/linux/sh/sh4/swapcontext.S b/sysdeps/unix/sysv/linux/sh/sh4/swapcontext.S index 3ff7fe420c..24caae5b64 100644 --- a/sysdeps/unix/sysv/linux/sh/sh4/swapcontext.S +++ b/sysdeps/unix/sysv/linux/sh/sh4/swapcontext.S @@ -209,6 +209,7 @@ ENTRY(__swapcontext) mov.l @(oR7,r0), r7 mov.l @(oR8,r0), r8 mov.l @r15+, r0 + cfi_adjust_cfa_offset(-4) jmp @r0 mov.l @r15+, r0 |