aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-12-23 22:06:12 +0000
committerChris Lattner <sabre@nondot.org>2009-12-23 22:06:12 +0000
commit7c8f9b77e1348bdeaf7046f75f44a800af857615 (patch)
treec176d672f299248c6f8d51fdc65f57f06ec3cb8d
parent154fe9812faddcd94568a64aee5f3cb0d47003d9 (diff)
fix typo
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@92065 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/ext-vector.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/ext-vector.c b/test/CodeGen/ext-vector.c
index d09599dfb6..6215323881 100644
--- a/test/CodeGen/ext-vector.c
+++ b/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;
}