[llvm-commits] [llvm] r40569 - /llvm/trunk/test/CFrontend/2007-06-18-SextAttrAggregate.c

Nick Lewycky nicholas at mxc.ca
Sat Jul 28 09:43:10 PDT 2007


Author: nicholas
Date: Sat Jul 28 11:43:10 2007
New Revision: 40569

URL: http://llvm.org/viewvc/llvm-project?rev=40569&view=rev
Log:
Make this explictly signed. Fixes PR1571.

Modified:
    llvm/trunk/test/CFrontend/2007-06-18-SextAttrAggregate.c

Modified: llvm/trunk/test/CFrontend/2007-06-18-SextAttrAggregate.c
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CFrontend/2007-06-18-SextAttrAggregate.c?rev=40569&r1=40568&r2=40569&view=diff

==============================================================================
--- llvm/trunk/test/CFrontend/2007-06-18-SextAttrAggregate.c (original)
+++ llvm/trunk/test/CFrontend/2007-06-18-SextAttrAggregate.c Sat Jul 28 11:43:10 2007
@@ -6,6 +6,6 @@
 long b;
 };
 
-void f(struct s a, char *b, char C) {
+void f(struct s a, char *b, signed char C) {
 
 }





More information about the llvm-commits mailing list