OLD | NEW |
1 ; Tests insertelement and extractelement vector instructions report | 1 ; Tests insertelement and extractelement vector instructions report |
2 ; errors when malformed. Note: We can only test literal indexing since | 2 ; errors when malformed. Note: We can only test literal indexing since |
3 ; llvm-as will not allow other bad forms of these instructions. | 3 ; llvm-as will not allow other bad forms of these instructions. |
4 | 4 |
5 ; RUN: llvm-as < %s | pnacl-freeze \ | 5 ; RUN: llvm-as < %s | pnacl-freeze | not %llvm2ice -notranslate \ |
6 ; RUN: | not %llvm2ice -notranslate -build-on-read \ | |
7 ; RUN: -allow-pnacl-reader-error-recovery | FileCheck %s | 6 ; RUN: -allow-pnacl-reader-error-recovery | FileCheck %s |
8 | 7 |
9 define void @ExtractV4xi1(<4 x i1> %v, i32 %i) { | 8 define void @ExtractV4xi1(<4 x i1> %v, i32 %i) { |
10 %e0 = extractelement <4 x i1> %v, i32 %i | 9 %e0 = extractelement <4 x i1> %v, i32 %i |
11 ; CHECK: Error: {{.*}} not {{.*}} constant | 10 ; CHECK: Error: {{.*}} not {{.*}} constant |
12 %e1 = extractelement <4 x i1> %v, i32 4 | 11 %e1 = extractelement <4 x i1> %v, i32 4 |
13 ; CHECK: Error: {{.*}} not in range | 12 ; CHECK: Error: {{.*}} not in range |
14 %e2 = extractelement <4 x i1> %v, i32 9 | 13 %e2 = extractelement <4 x i1> %v, i32 9 |
15 ; CHECK: Error: {{.*}} not in range | 14 ; CHECK: Error: {{.*}} not in range |
16 ret void | 15 ret void |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 | 138 |
140 define <4 x float> @InsertV4xfloat(<4 x float> %v, i32 %i) { | 139 define <4 x float> @InsertV4xfloat(<4 x float> %v, i32 %i) { |
141 %r0 = insertelement <4 x float> %v, float 3.0, i32 %i | 140 %r0 = insertelement <4 x float> %v, float 3.0, i32 %i |
142 ; CHECK: Error: {{.*}} not {{.*}} constant | 141 ; CHECK: Error: {{.*}} not {{.*}} constant |
143 %r1 = insertelement <4 x float> %v, float 3.0, i32 4 | 142 %r1 = insertelement <4 x float> %v, float 3.0, i32 4 |
144 ; CHECK: Error: {{.*}} not in range | 143 ; CHECK: Error: {{.*}} not in range |
145 %r2 = insertelement <4 x float> %v, float 3.0, i32 44 | 144 %r2 = insertelement <4 x float> %v, float 3.0, i32 44 |
146 ; CHECK: Error: {{.*}} not in range | 145 ; CHECK: Error: {{.*}} not in range |
147 ret <4 x float> %r2 | 146 ret <4 x float> %r2 |
148 } | 147 } |
OLD | NEW |