mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-01 15:33:33 +00:00
a99800c77f
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36079 91177308-0d34-0410-b5e6-96231b3b80d8
7 lines
157 B
C
7 lines
157 B
C
// RUN: %llvmgcc -S %s -o - | llvm-as | llc -march=c | \
|
|
// RUN: grep {(unsigned short}
|
|
|
|
int Z = -1;
|
|
|
|
int test(unsigned short X, short Y) { return X+Y+Z; }
|