mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-24 20:49:43 +00:00
2000-12-11 Ben Elliston <bje@redhat.com>
* cgen-ops.h (SUBWORDDFDI): New function.
This commit is contained in:
parent
d58c3cb85e
commit
0d277f51d0
@ -1,3 +1,7 @@
|
||||
2000-12-11 Ben Elliston <bje@redhat.com>
|
||||
|
||||
* cgen-ops.h (SUBWORDDFDI): New function.
|
||||
|
||||
2000-12-05 Ben Elliston <bje@redhat.com>
|
||||
|
||||
* Make-common.in (cgen-defs): New target.
|
||||
|
@ -364,6 +364,14 @@ SUBWORDSFSI (SF in)
|
||||
return x.out;
|
||||
}
|
||||
|
||||
SEMOPS_INLINE DI
|
||||
SUBWORDDFDI (DF in)
|
||||
{
|
||||
union { DF in; DI out; } x;
|
||||
x.in = in;
|
||||
return x.out;
|
||||
}
|
||||
|
||||
SEMOPS_INLINE UQI
|
||||
SUBWORDDIUQI (DI in, int byte)
|
||||
{
|
||||
@ -456,6 +464,7 @@ QI SUBWORDSIQI (SI);
|
||||
HI SUBWORDSIHI (HI);
|
||||
SI SUBWORDSFSI (SF);
|
||||
SF SUBWORDSISF (SI);
|
||||
DI SUBWORDDFDI (DF);
|
||||
DF SUBWORDDIDF (DI);
|
||||
QI SUBWORDDIQI (DI, int);
|
||||
HI SUBWORDDIHI (DI, int);
|
||||
|
Loading…
Reference in New Issue
Block a user