X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FFeature%2Fpacked_struct.ll;h=07666491b130d85d1d461026df8d942066914474;hb=67a6b1c40c04178b52a53623e05a790f517622f1;hp=861d0bba7020d70619be4ce100de0d9725b54204;hpb=e3ff5ada8a8f6cc166ecc45147da0d63c3683026;p=oota-llvm.git diff --git a/test/Feature/packed_struct.ll b/test/Feature/packed_struct.ll old mode 100755 new mode 100644 index 861d0bba702..07666491b13 --- a/test/Feature/packed_struct.ll +++ b/test/Feature/packed_struct.ll @@ -1,8 +1,9 @@ ; RUN: llvm-as < %s | llvm-dis > %t1.ll ; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll -; RUN: diff %t1.ll %t2.ll && -; RUN: not grep cast %t2.ll && -; RUN: grep "<{" %t2.ll +; RUN: diff %t1.ll %t2.ll +; RUN: not grep cast %t2.ll +; RUN: grep "}>" %t2.ll +; END. %struct.anon = type <{ i8, i32, i32, i32 }> @foos = external global %struct.anon @@ -12,7 +13,6 @@ @E1 = global <{i8, i32, i32}> <{i8 1, i32 2, i32 3}> @E2 = global {i8, i32, i32} {i8 4, i32 5, i32 6} -implementation ; Functions: define i32 @main() {