From 67e74f6f1a24247bfcd3d6c165a2d6cd45c83b06 Mon Sep 17 00:00:00 2001 From: xleroy Date: Wed, 20 Apr 2011 12:08:11 +0000 Subject: Support compile-time constant expressions as arguments to gcc-style attributes git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@1641 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e --- test/regression/attribs1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/regression/attribs1.c') diff --git a/test/regression/attribs1.c b/test/regression/attribs1.c index 21d7556c..a02f7188 100644 --- a/test/regression/attribs1.c +++ b/test/regression/attribs1.c @@ -8,7 +8,7 @@ /* Alignment */ char filler1 = 1; -__attribute((__aligned__(16))) int a = 1234; +__attribute((__aligned__(1<<4))) int a = 1234; char filler2 = 1; __attribute((__aligned__(8))) char b = 'b'; -- cgit