mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-10 02:25:47 +00:00
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@127941 91177308-0d34-0410-b5e6-96231b3b80d8
18 lines
252 B
C
18 lines
252 B
C
// RUN: %llvmgcc %s -S -O0 -o - | FileCheck %s
|
|
// 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();
|
|
}
|
|
|
|
|