diff options
author | Chris Lattner <sabre@nondot.org> | 2009-12-23 22:06:12 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-12-23 22:06:12 +0000 |
commit | 9ac2b586c7c8f5554be16a6da70d32dcc39e2235 (patch) | |
tree | d97832d176dbda4df2e4605d1af820bd6991e761 /clang/test/CodeGen/ext-vector.c | |
parent | 247894b36138182c092f111d4e4c1a15e03c194f (diff) | |
download | bcm5719-llvm-9ac2b586c7c8f5554be16a6da70d32dcc39e2235.tar.gz bcm5719-llvm-9ac2b586c7c8f5554be16a6da70d32dcc39e2235.zip |
fix typo
llvm-svn: 92065
Diffstat (limited to 'clang/test/CodeGen/ext-vector.c')
-rw-r--r-- | clang/test/CodeGen/ext-vector.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/ext-vector.c b/clang/test/CodeGen/ext-vector.c index d09599dfb6c..6215323881f 100644 --- a/clang/test/CodeGen/ext-vector.c +++ b/clang/test/CodeGen/ext-vector.c @@ -143,7 +143,7 @@ int test9(int4 V) { return V.xy.x; } -int test10(foo_t V) { +int test10(int4 V) { return (V+V).x; } |