From 8127f3a6e6c615856006842cee6df2e13c1ba852 Mon Sep 17 00:00:00 2001 From: Nick Lewycky Date: Sat, 28 Jul 2007 16:43:10 +0000 Subject: [PATCH] Make this explictly signed. Fixes PR1571. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40569 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CFrontend/2007-06-18-SextAttrAggregate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CFrontend/2007-06-18-SextAttrAggregate.c b/test/CFrontend/2007-06-18-SextAttrAggregate.c index 2eabd4fcca4..2fcd72607a2 100644 --- a/test/CFrontend/2007-06-18-SextAttrAggregate.c +++ b/test/CFrontend/2007-06-18-SextAttrAggregate.c @@ -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) { }