[LangRef] Fix code segment and numbering issue in the 'call' instruction section...
[llvm-project.git] / compiler-rt / test / builtins / Unit / ppc / DD.h
blobfd62dae16b22eb7495d822033718ad281b708ae7
1 #ifndef __DD_HEADER
2 #define __DD_HEADER
4 #include <stdint.h>
6 typedef union {
7 long double ld;
8 struct {
9 double hi;
10 double lo;
12 } DD;
14 #endif // __DD_HEADER