Phrase compile time assert in standard way.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@85079 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Dunbar 2009-10-25 23:11:15 +00:00
Родитель 961f0708fb
Коммит 9e4e2d1819
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -26,5 +26,5 @@ float f1(void) {
// PR5265
typedef float __attribute__((ext_vector_type (3))) float3;
int test2[(sizeof(float3) == sizeof(float4))*2-1];
int test2[sizeof(float3) == sizeof(float4) ? 1 : -1];