[llvm] r256991 - [Bitcode] Remove superflous compatibility tests
Vedant Kumar via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 6 15:22:39 PST 2016
Author: vedantk
Date: Wed Jan 6 17:22:38 2016
New Revision: 256991
URL: http://llvm.org/viewvc/llvm-project?rev=256991&view=rev
Log:
[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.
Modified:
llvm/trunk/test/Bitcode/compatibility.ll
Modified: llvm/trunk/test/Bitcode/compatibility.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Bitcode/compatibility.ll?rev=256991&r1=256990&r2=256991&view=diff
==============================================================================
--- llvm/trunk/test/Bitcode/compatibility.ll (original)
+++ llvm/trunk/test/Bitcode/compatibility.ll Wed Jan 6 17:22:38 2016
@@ -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 }>
- at const.array = constant [2 x i32] [i32 -3, i32 -4]
-; CHECK: @const.array = constant [2 x i32] [i32 -3, i32 -4]
- at const.vector = constant <2 x i32> <i32 -5, i32 -6>
-; CHECK: @const.vector = constant <2 x i32> <i32 -5, i32 -6>
; 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]
More information about the llvm-commits
mailing list