diff options
Diffstat (limited to 'test/CodeGen/ext-vector-indexing.c')
-rw-r--r-- | test/CodeGen/ext-vector-indexing.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/ext-vector-indexing.c b/test/CodeGen/ext-vector-indexing.c index 28c0e1e..fff1fa4 100644 --- a/test/CodeGen/ext-vector-indexing.c +++ b/test/CodeGen/ext-vector-indexing.c @@ -8,7 +8,7 @@ void test() va.hi[0] = 3.0; // CHECK: [[VA:%.*]] = alloca <4 x float> // CHECK: [[CONV:%.*]] = bitcast <4 x float>* [[VA]] to float* -// CHECK: [[ADD:%.*]] = getelementptr inbounds float* [[CONV]], i64 2 -// CHECK: [[ARRIDX:%.*]] = getelementptr inbounds float* [[ADD]], i64 0 +// CHECK: [[ADD:%.*]] = getelementptr inbounds float, float* [[CONV]], i64 2 +// CHECK: [[ARRIDX:%.*]] = getelementptr inbounds float, float* [[ADD]], i64 0 // CHECK: store float 3.000000e+00, float* [[ARRIDX]] } |