about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/ia64/bits/types/__ia64_fpreg.h
blob: 6d69586ab4aaaa868ff05f401680ad1a814ba019 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef ____ia64_fpreg_defined
#define ____ia64_fpreg_defined

#include <features.h>

#ifdef __USE_MISC
# define __ctx(fld) fld
#else
# define __ctx(fld) __ ## fld
#endif

struct __ia64_fpreg
  {
    union
      {
	unsigned long __ctx(bits)[2];
      } __ctx(u);
  } __attribute__ ((__aligned__ (16)));

#undef __ctx

#endif /* __ia64_fpreg */