From ab76d2f8b379622b6a4d835377dd9ef9ba05982b Mon Sep 17 00:00:00 2001 From: Aaron Ballman Date: Mon, 13 Jan 2014 21:30:03 +0000 Subject: There is no such thing as __attribute__((align)); that's a __declspec attribute. Fixing these test cases to use the proper spelling for their syntax. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@199141 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/SemaTemplate/attributes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/SemaTemplate') diff --git a/test/SemaTemplate/attributes.cpp b/test/SemaTemplate/attributes.cpp index 5a06a706aa..1d46058b01 100644 --- a/test/SemaTemplate/attributes.cpp +++ b/test/SemaTemplate/attributes.cpp @@ -22,7 +22,7 @@ namespace attribute_aligned { template class my_aligned_storage { - __attribute__((align(Align))) char storage[Size]; + __attribute__((aligned(Align))) char storage[Size]; }; template -- cgit v1.2.1