aboutsummaryrefslogtreecommitdiff
path: root/test/Coverage/c-language-features.inc
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2009-01-18 02:01:21 +0000
committerNate Begeman <natebegeman@mac.com>2009-01-18 02:01:21 +0000
commit190d6a25393995b42e32086949a68285ee423fb9 (patch)
treee4de1c96f9391bddfe335c04b2d0a59e7094a1db /test/Coverage/c-language-features.inc
parentda9d61c96c412f6babc7f824152609562f302388 (diff)
A couple more vector component access fixes.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62443 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Coverage/c-language-features.inc')
-rw-r--r--test/Coverage/c-language-features.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Coverage/c-language-features.inc b/test/Coverage/c-language-features.inc
index 6944b9d65e..9a52e56c21 100644
--- a/test/Coverage/c-language-features.inc
+++ b/test/Coverage/c-language-features.inc
@@ -136,7 +136,7 @@ typedef __attribute__((ext_vector_type(4))) float float4;
void f5() {
float4 t0 = (float4) { 0, 1, 2, 3 };
float4 t1 = t0;
- t0.lo.e = t1.hi.x;
+ t0.lo.even = t1.hi.x;
}
void f6() {