Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 158691
b: refs/heads/master
c: fe9b4e4
h: refs/heads/master
i:
  158689: 8a94f41
  158687: fa91f25
v: v3
  • Loading branch information
H. Peter Anvin committed Aug 31, 2009
1 parent f4cb716 commit e3aae86
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 6b0f43ddfa358dc71ad2a2d57bce5906c1c5dc1a
refs/heads/master: fe9b4e4e40ffdabbd385cdf171cb861c2fd517c0
18 changes: 17 additions & 1 deletion trunk/arch/x86/include/asm/dwarf2.h
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,25 @@
CFI_RESTORE \reg
.endm
#else /*!CONFIG_X86_64*/
.macro pushl_cfi reg
pushl \reg
CFI_ADJUST_CFA_OFFSET 4
.endm

/* 32bit defenitions are missed yet */
.macro popl_cfi reg
popl \reg
CFI_ADJUST_CFA_OFFSET -4
.endm

.macro movl_cfi reg offset=0
movl %\reg, \offset(%esp)
CFI_REL_OFFSET \reg, \offset
.endm

.macro movl_cfi_restore offset reg
movl \offset(%esp), %\reg
CFI_RESTORE \reg
.endm
#endif /*!CONFIG_X86_64*/
#endif /*__ASSEMBLY__*/

Expand Down

0 comments on commit e3aae86

Please sign in to comment.