Make this explictly signed. Fixes PR1571.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40569 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Nick Lewycky 2007-07-28 16:43:10 +00:00
parent 19fe8f907e
commit 8127f3a6e6

View File

@ -6,6 +6,6 @@ long a;
long b;
};
void f(struct s a, char *b, char C) {
void f(struct s a, char *b, signed char C) {
}