aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2007-07-28 16:43:10 +0000
committerNick Lewycky <nicholas@mxc.ca>2007-07-28 16:43:10 +0000
commit8127f3a6e6c615856006842cee6df2e13c1ba852 (patch)
treed97f95761d507dfbdf42bc0c7abbb374e3dc24ce
parent19fe8f907e4addad1a33b7590b3f05893c39b3a6 (diff)
Make this explictly signed. Fixes PR1571.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40569 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CFrontend/2007-06-18-SextAttrAggregate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CFrontend/2007-06-18-SextAttrAggregate.c b/test/CFrontend/2007-06-18-SextAttrAggregate.c
index 2eabd4fcca..2fcd72607a 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) {
}