From 43854e3ccc7fb9fa2cbe37529a72f77ca512bb86 Mon Sep 17 00:00:00 2001 From: Graham Hunter Date: Tue, 18 Jun 2019 10:11:56 +0000 Subject: [SVE][IR] Scalable Vector IR Type with pr42210 fix Recommit of D32530 with a few small changes: - Stopped recursively walking through aggregates in the verifier, so that we don't impose too much overhead on large modules under LTO (see PR42210). - Changed tests to match; the errors are slightly different since they only report the array or struct that actually contains a scalable vector, rather than all aggregates which contain one in a nested member. - Corrected an older comment Reviewers: thakis, rengolin, sdesmalen Reviewed By: sdesmalen Differential Revision: https://reviews.llvm.org/D63321 llvm-svn: 363658 --- llvm/test/Bitcode/compatibility.ll | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'llvm/test/Bitcode/compatibility.ll') diff --git a/llvm/test/Bitcode/compatibility.ll b/llvm/test/Bitcode/compatibility.ll index 19a6cb0acc1..991bde69b61 100644 --- a/llvm/test/Bitcode/compatibility.ll +++ b/llvm/test/Bitcode/compatibility.ll @@ -917,6 +917,10 @@ define void @typesystem() { ; CHECK: %t7 = alloca x86_mmx %t8 = alloca %opaquety* ; CHECK: %t8 = alloca %opaquety* + %t9 = alloca <4 x i32> + ; CHECK: %t9 = alloca <4 x i32> + %t10 = alloca + ; CHECK: %t10 = alloca ret void } -- cgit v1.2.3