mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-27 23:38:59 -04:00

Pad these structs up so they are sret-returned even on that architecture. llvm-svn: 199188
12 lines
144 B
C
12 lines
144 B
C
// RUN: %clang_cc1 %s -emit-llvm -o - | grep sret | count 2
|
|
|
|
struct abc {
|
|
long a;
|
|
long b;
|
|
long c;
|
|
long d;
|
|
long e;
|
|
};
|
|
|
|
struct abc foo2(){}
|