Files
clang-p2996/compiler-rt/test/Unit/ppc/DD.h
Daniel Dunbar fd089990f7 Initial import of compiler-rt.
-

llvm-svn: 74292
2009-06-26 16:47:03 +00:00

15 lines
164 B
C

#ifndef __DD_HEADER
#define __DD_HEADER
#include <stdint.h>
typedef union {
long double ld;
struct {
double hi;
double lo;
};
} DD;
#endif // __DD_HEADER