summaryrefslogtreecommitdiff
path: root/test/Unit/ppc/DD.h
diff options
context:
space:
mode:
Diffstat (limited to 'test/Unit/ppc/DD.h')
-rw-r--r--test/Unit/ppc/DD.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/Unit/ppc/DD.h b/test/Unit/ppc/DD.h
new file mode 100644
index 000000000..fd62dae16
--- /dev/null
+++ b/test/Unit/ppc/DD.h
@@ -0,0 +1,14 @@
+#ifndef __DD_HEADER
+#define __DD_HEADER
+
+#include <stdint.h>
+
+typedef union {
+ long double ld;
+ struct {
+ double hi;
+ double lo;
+ };
+} DD;
+
+#endif // __DD_HEADER