xref: /aosp_15_r20/external/compiler-rt/test/builtins/Unit/ppc/DD.h (revision 7c3d14c8b49c529e04be81a3ce6f5cc23712e4c6)
1 #ifndef __DD_HEADER
2 #define __DD_HEADER
3 
4 #include <stdint.h>
5 
6 typedef union {
7 	long double ld;
8 	struct {
9 		double hi;
10 		double lo;
11 	};
12 } DD;
13 
14 #endif // __DD_HEADER
15