blob: 2a3ff8e0ef84172c1a59beb0ae3bab6e59e6a111 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// RUN: %llvmgcc %s -m64 -S -O0 -o - | FileCheck %s
// XFAIL: *
// XTARGET: x86_64
// 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();
}
|