From 72788bf2e7b5d48ecc690478cbacc3dbb6c6b1a8 Mon Sep 17 00:00:00 2001 From: Vedant Kumar Date: Wed, 6 Jan 2016 23:22:38 +0000 Subject: [PATCH] [Bitcode] Remove superflous compatibility tests With r256990, bogner introduced comprehensive tests for constant arrays and vectors. We no longer need the existing ones because they are redundant. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@256991 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Bitcode/compatibility.ll | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/Bitcode/compatibility.ll b/test/Bitcode/compatibility.ll index d33539a9e81..34c4a073b54 100644 --- a/test/Bitcode/compatibility.ll +++ b/test/Bitcode/compatibility.ll @@ -47,10 +47,6 @@ $comdat.samesize = comdat samesize ; CHECK: @const.struct = constant %const.struct.type { i32 -1, i8 undef } @const.struct.packed = constant %const.struct.type.packed <{ i32 -1, i8 1 }> ; CHECK: @const.struct.packed = constant %const.struct.type.packed <{ i32 -1, i8 1 }> -@const.array = constant [2 x i32] [i32 -3, i32 -4] -; CHECK: @const.array = constant [2 x i32] [i32 -3, i32 -4] -@const.vector = constant <2 x i32> -; CHECK: @const.vector = constant <2 x i32> ; CHECK: @constant.array.i8 = constant [3 x i8] c"\00\01\00" @constant.array.i8 = constant [3 x i8] [i8 -0, i8 1, i8 0] -- 2.34.1