1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

Add a test case for PR1086

llvm-svn: 32977
This commit is contained in:
Reid Spencer 2007-01-07 03:27:39 +00:00
parent 9fae72ee14
commit 1ba48e5dc6

View File

@ -0,0 +1,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; }