mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-12 15:51:35 +00:00
595c1b34f8
llvm-svn: 128036
20 lines
288 B
C
20 lines
288 B
C
// RUN: %llvmgcc %s -m64 -S -O0 -o - | FileCheck %s
|
|
// XFAIL: *
|
|
// XTARGET: darwin
|
|
// Radar 9156771
|
|
typedef struct RGBColor {
|
|
unsigned short red;
|
|
unsigned short green;
|
|
unsigned short blue;
|
|
} RGBColor;
|
|
|
|
RGBColor func();
|
|
|
|
RGBColor X;
|
|
void foo() {
|
|
//CHECK: store i48
|
|
X = func();
|
|
}
|
|
|
|
|