Add a test case for PR1086

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32977 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2007-01-07 03:27:39 +00:00
parent 0ae9693744
commit 32ff92d924

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