mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
6fae526290
llvm-svn: 46220
6 lines
141 B
C
6 lines
141 B
C
// RUN: %llvmgcc %s -S -o -
|
|
|
|
struct X { long double b; unsigned char c; double __attribute__((packed)) d; };
|
|
struct X x = { 3.0L, 5, 3.0 };
|
|
|