mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-25 00:33:15 +00:00
12 lines
142 B
C
12 lines
142 B
C
|
// RUN: llvm-gcc %s -o - -S -emit-llvm -O3 | grep {i8 sext}
|
||
|
// PR1513
|
||
|
|
||
|
struct s{
|
||
|
long a;
|
||
|
long b;
|
||
|
};
|
||
|
|
||
|
void f(struct s a, char *b, char C) {
|
||
|
|
||
|
}
|