commit | ce4d7fce6b09e0ef596cdbbe883c77676b598885 | [log] [tgz] |
---|---|---|
author | Nate Begeman <natebegeman@mac.com> | Fri Apr 18 23:10:10 2008 +0000 |
committer | Nate Begeman <natebegeman@mac.com> | Fri Apr 18 23:10:10 2008 +0000 |
tree | 53fa78e0f554adba363db449eca7507f60b8a828 | |
parent | 423edc2384faf9baa617e02ce73e92cf29330408 [diff] [blame] |
OCUVector -> ExtVector, shorthand for extended vector, per feedback from Chris. llvm-svn: 49942
diff --git a/clang/test/Sema/vector-init.c b/clang/test/Sema/vector-init.c index 5436cba..1e2ba01 100644 --- a/clang/test/Sema/vector-init.c +++ b/clang/test/Sema/vector-init.c
@@ -1,5 +1,5 @@ // RUN: clang %s -verify -fsyntax-only -typedef __attribute__(( ocu_vector_type(4) )) float float4; +typedef __attribute__(( ext_vector_type(4) )) float float4; float4 foo = (float4){ 1.0, 2.0, 3.0, 4.0 };