aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/CBackend/2007-01-06-Signless.c
blob: 048f9f8751f49024893911ca7bce075e411afc1b (plain)
1
2
3
4
5
6
// 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; }