Skip to content

Commit

Permalink
* sysdeps/powerpc/bits/link.h (La_ppc64_regs): Add lr_vrsave.
Browse files Browse the repository at this point in the history
	(La_ppc64_retval): Correct size of lrc_fp.
	* sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_profile_resolve):
	Fix up ABI problems and complete function.
  • Loading branch information
Ulrich Drepper committed Mar 19, 2005
1 parent 88764ae commit bb4bb82
Show file tree
Hide file tree
Showing 3 changed files with 351 additions and 104 deletions.
7 changes: 7 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
2005-02-07 Steven Munroe <sjmunroe@us.ibm.com>

* sysdeps/powerpc/bits/link.h (La_ppc64_regs): Add lr_vrsave.
(La_ppc64_retval): Correct size of lrc_fp.
* sysdeps/powerpc/powerpc64/dl-trampoline.S (_dl_profile_resolve):
Fix up ABI problems and complete function.

2005-03-10 Jakub Jelinek <jakub@redhat.com>

* math/test-misc.c (main): Add some more tests.
Expand Down
7 changes: 4 additions & 3 deletions sysdeps/powerpc/bits/link.h
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ typedef struct La_ppc64_regs
{
uint64_t lr_reg[8];
double lr_fp[13];
uint64_t __padding;
uint32_t __padding;
uint32_t lr_vrsave;
uint32_t lr_vreg[12][4];
uint64_t lr_r1;
uint64_t lr_lr;
Expand All @@ -82,8 +83,8 @@ typedef struct La_ppc64_retval
{
uint64_t lrv_r3;
uint64_t lrv_r4;
double lrv_fp[8];
uint32_t lrv_v2[4];
double lrv_fp[4]; /* f1-f4, float - complex long double. */
uint32_t lrv_v2[4]; /* v2. */
} La_ppc64_retval;


Expand Down
Loading

0 comments on commit bb4bb82

Please sign in to comment.