commit | e78ec3149097df4335d9bd6a92f9c2f5f27bac2f | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Thu Oct 22 19:56:49 2009 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Thu Oct 22 19:56:49 2009 +0000 |
tree | 72ed8e5a67bd052b9f3a9077443e6549fecf7652 | |
parent | 4a058ded4d75ff9a76684cc685df8ea0290752d3 [diff] [blame] |
fix #2 :) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@84889 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/Sema/vector-init.c b/test/Sema/vector-init.c index 37c4a0c..18104d8 100644 --- a/test/Sema/vector-init.c +++ b/test/Sema/vector-init.c
@@ -26,5 +26,5 @@ // PR5265 typedef float __attribute__((ext_vector_type (3))) float3; -int test2[(sizeof(float3) == sizeof(float4)*2-1)]; +int test2[(sizeof(float3) == sizeof(float4))*2-1];