Files
clang-p2996/llvm/test/CodeGen/CBackend/2007-01-06-Signless.c
Reid Spencer a5626e787f Make this test work.
llvm-svn: 36079
2007-04-15 19:28:23 +00:00

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; }