mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 06:09:05 +00:00
13 lines
206 B
C
13 lines
206 B
C
|
// RUN: %llvmgcc -S %s -emit-llvm -o - | grep "signext" | count 4
|
||
|
|
||
|
signed char foo1() { return 1; }
|
||
|
|
||
|
void foo2(signed short a) { }
|
||
|
|
||
|
signed char foo3(void) { return 1; }
|
||
|
|
||
|
void foo4(a) signed short a; { }
|
||
|
|
||
|
|
||
|
|