Implement C _FloatN, _FloatNx types.
[official-gcc.git] / gcc / testsuite / gcc.dg / torture / pr31254.c
blobef2ee21ad6735c00b067d973970d5d77ae5d8849
1 /* { dg-do compile } */
3 struct timespec
5 long tv_sec;
6 long tv_nsec;
7 };
8 struct inode
10 struct timespec i_atime;
11 struct timespec i_mtime;
13 struct afs_vnode
15 struct inode vfs_inode;
17 static inline
18 struct inode *AFS_VNODE_TO_I (struct afs_vnode *vnode)
20 return &vnode->vfs_inode;
22 void
23 afs_inode_map_status (struct afs_vnode *vnode)
25 struct inode *inode = AFS_VNODE_TO_I (vnode);
26 inode->i_atime = inode->i_mtime;