[cfe-commits] r62062 - /cfe/trunk/test/Sema/address_spaces.c
Chris Lattner
sabre at nondot.org
Sun Jan 11 16:08:58 PST 2009
Author: lattner
Date: Sun Jan 11 18:08:58 2009
New Revision: 62062
URL: http://llvm.org/viewvc/llvm-project?rev=62062&view=rev
Log:
testcase that works now with r62061
Modified:
cfe/trunk/test/Sema/address_spaces.c
Modified: cfe/trunk/test/Sema/address_spaces.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Sema/address_spaces.c?rev=62062&r1=62061&r2=62062&view=diff
==============================================================================
--- cfe/trunk/test/Sema/address_spaces.c (original)
+++ cfe/trunk/test/Sema/address_spaces.c Sun Jan 11 18:08:58 2009
@@ -17,3 +17,8 @@
*a = 5.0f;
}
+
+struct _st {
+ int x, y;
+} s __attribute ((address_space(1))) = {1, 1};
+
More information about the cfe-commits
mailing list