[test] Fix variable definition in acle_sve_ld1.sh
Clang test acle_sve_ld1.sh is missing the colon in one of the string variable definition separating the variable name from the regex. This leads the substitution block to be parsed as a numeric variable use. Reviewed By: sdesmalen Differential Revision: https://reviews.llvm.org/D98852
This commit is contained in:
		
							parent
							
								
									c8893f3b78
								
							
						
					
					
						commit
						e5cd5b352f
					
				| 
						 | 
					@ -114,7 +114,7 @@ svint32_t test_svld1sh_gather_u32base_s32(svbool_t pg, svuint32_t bases) {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
svint64_t test_svld1sh_gather_u64base_s64(svbool_t pg, svuint64_t bases) {
 | 
					svint64_t test_svld1sh_gather_u64base_s64(svbool_t pg, svuint64_t bases) {
 | 
				
			||||||
  // CHECK-LABEL: test_svld1sh_gather_u64base_s64
 | 
					  // CHECK-LABEL: test_svld1sh_gather_u64base_s64
 | 
				
			||||||
  // CHECK: %[[PG.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg)
 | 
					  // CHECK: %[[PG:.*]] = call <vscale x 2 x i1> @llvm.aarch64.sve.convert.from.svbool.nxv2i1(<vscale x 16 x i1> %pg)
 | 
				
			||||||
  // CHECK: %[[LOAD:.*]] = call <vscale x 2 x i16> @llvm.aarch64.sve.ld1.gather.scalar.offset.nxv2i16.nxv2i64(<vscale x 2 x i1> %[[PG]], <vscale x 2 x i64> %bases, i64 0)
 | 
					  // CHECK: %[[LOAD:.*]] = call <vscale x 2 x i16> @llvm.aarch64.sve.ld1.gather.scalar.offset.nxv2i16.nxv2i64(<vscale x 2 x i1> %[[PG]], <vscale x 2 x i64> %bases, i64 0)
 | 
				
			||||||
  // CHECK: %[[SEXT:.*]] = sext <vscale x 2 x i16> %[[LOAD]] to <vscale x 2 x i64>
 | 
					  // CHECK: %[[SEXT:.*]] = sext <vscale x 2 x i16> %[[LOAD]] to <vscale x 2 x i64>
 | 
				
			||||||
  // CHECK: ret <vscale x 2 x i64> %[[SEXT]]
 | 
					  // CHECK: ret <vscale x 2 x i64> %[[SEXT]]
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue