From 487bc8f7fb27c2955e5f0809103f051bcda2acf9 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 1 Jul 2003 17:50:11 +0000 Subject: [PATCH] Move to test/programs/LLvmsource git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7037 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/LLC/2002-02-12-setuw-setsw.llx | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 test/LLC/2002-02-12-setuw-setsw.llx diff --git a/test/LLC/2002-02-12-setuw-setsw.llx b/test/LLC/2002-02-12-setuw-setsw.llx deleted file mode 100644 index 7cf46b68e6f..00000000000 --- a/test/LLC/2002-02-12-setuw-setsw.llx +++ /dev/null @@ -1,25 +0,0 @@ -; Our back-end is generating set-unsigned (setuw) for -2, when it -; should be using setsw. -; -; RUN: as %s -f -o Output/%s.bc -; RUN: llc -f Output/%s.bc -; RUN: /usr/ccs/bin/as Output/%s.s -xarch=v9 -; RUN: /opt/SUNWspro60/bin/cc -xarch=v9 Output/%s.o -o Output/%s.exe -; RUN: Output/%s.exe -; - -implementation -declare void "abort"() - -int "main"(int %argc, sbyte * * %argv) -begin - %T1 = cast int 2 to uint - %tmp = add uint %T1, 4294967294 ; == -2 - %cond = seteq uint %tmp, 0 - br bool %cond, label %Ok, label %Fail -Ok: - ret int 0 -Fail: - call void %abort() - ret int 1 -end