bolt/deps/llvm-18.1.8/compiler-rt/test/builtins/Unit/ppc/DD.h

15 lines
164 B
C
Raw Normal View History

2025-02-14 19:21:04 +01:00
#ifndef __DD_HEADER
#define __DD_HEADER
#include <stdint.h>
typedef union {
long double ld;
struct {
double hi;
double lo;
};
} DD;
#endif // __DD_HEADER