mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 06:09:05 +00:00
46033b0be1
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127312 91177308-0d34-0410-b5e6-96231b3b80d8
8 lines
150 B
C
8 lines
150 B
C
// RUN: %llvmgcc -S %s
|
|
typedef struct {
|
|
union {
|
|
struct { } __attribute((packed));
|
|
};
|
|
} fenv_t;
|
|
const fenv_t _FE_DFL_ENV = {{{ 0, 0, 0, 0 }}};
|