diff options
author | Roland McGrath <roland@redhat.com> | 2006-06-13 19:41:58 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 2006-06-13 19:41:58 +0000 |
commit | 80808bfb539a216550fd4f3479267a24da397cd2 (patch) | |
tree | 0e8110c180226f55ba42cb13b2ea7127e97334eb /backends | |
parent | 6ca4600fb59d1e1ae3dfb872b184ac91f10c473f (diff) | |
download | elfutils-80808bfb539a216550fd4f3479267a24da397cd2.tar.gz |
2006-06-13 Roland McGrath <roland@redhat.com>
* ppc64_retval.c: Remove SVR4_STRUCT_RETURN braino.
Diffstat (limited to 'backends')
-rw-r--r-- | backends/ChangeLog | 4 | ||||
-rw-r--r-- | backends/ppc64_retval.c | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/backends/ChangeLog b/backends/ChangeLog index c054c58e..b5ae1304 100644 --- a/backends/ChangeLog +++ b/backends/ChangeLog @@ -1,3 +1,7 @@ +2006-06-13 Roland McGrath <roland@redhat.com> + + * ppc64_retval.c: Remove SVR4_STRUCT_RETURN braino. + 2006-06-12 Ulrich Drepper <drepper@redhat.com> * common-reloc.c (none_reloc_p): New function. diff --git a/backends/ppc64_retval.c b/backends/ppc64_retval.c index 70a0de76..7f5e6f83 100644 --- a/backends/ppc64_retval.c +++ b/backends/ppc64_retval.c @@ -34,10 +34,6 @@ #include "libebl_CPU.h" -/* This is the SVR4 ELF ABI convention, but AIX and Linux do not use it. */ -#define SVR4_STRUCT_RETURN 0 - - /* r3. */ static const Dwarf_Op loc_intreg[] = { @@ -137,7 +133,7 @@ ppc64_return_value_location (Dwarf_Die *functypedie, const Dwarf_Op **locp) return nloc_fp4regs; } } - if (size <= 8 && SVR4_STRUCT_RETURN) + if (size <= 8) { intreg: *locp = loc_intreg; |