1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

Make this explictly signed. Fixes PR1571.

llvm-svn: 40569
This commit is contained in:
Nick Lewycky 2007-07-28 16:43:10 +00:00
parent 780ecf20d1
commit 391b3e4b4c

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) {
}