test/Features should not contain whole programs
authorChris Lattner <sabre@nondot.org>
Tue, 12 Feb 2002 15:21:57 +0000 (15:21 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 12 Feb 2002 15:21:57 +0000 (15:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1734 91177308-0d34-0410-b5e6-96231b3b80d8

test/Feature/Makefile
test/Feature/fib.ll [deleted file]

index 349c1e0c211dc152a76db38617428f707e962e7d..ffbad50e6bd978d91979c2780c3436b0db03efe5 100644 (file)
@@ -38,8 +38,3 @@ Output/%.s: Output/%.bc $(LLC)
        $(LLC) -f $(LLCFLAGS) $< -o $@ || \
                  ( rm -f $@; $(FAILURE) $@ )
 
-Output/%: Output/%.s $(LLC)
-       @echo "======== Generating SPARC executable for $<"
-       $(CC) $(CFLAGS) $< -o $@ || \
-                 ( rm -f $@; $(FAILURE) $@ )
-
diff --git a/test/Feature/fib.ll b/test/Feature/fib.ll
deleted file mode 100644 (file)
index 7ea38cb..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-implementation
-
-uint "fib"(uint %n)
-begin
-bb1:                                    ;[#uses=0]
-        %cond1000 = setgt uint %n, 1            ; <bool> [#uses=1]
-        br bool %cond1000, label %bb3, label %bb2
-
-bb2:                                    ;[#uses=1]
-        ret uint 1
-
-bb3:                                    ;[#uses=1]
-        %reg112 = sub uint %n, 2                       ; <uint> [#uses=1]
-        %reg113 = call uint %fib( uint %reg112 )        ; <uint> [#uses=1]
-        %reg115 = sub uint %n, 1                       ; <uint> [#uses=1]
-        %reg116 = call uint %fib( uint %reg115 )        ; <uint> [#uses=1]
-        %reg110 = add uint %reg113, %reg116             ; <uint> [#uses=1]
-        ret uint %reg110
-end
-
-int "main"(int %argc, sbyte * * %argv)
-begin
-bb1:                                    ;[#uses=0]
-        %reg109 = call uint %fib( uint 6 )              ; <uint> [#uses=1]
-        %cast1004 = cast uint %reg109 to int            ; <int> [#uses=1]
-        ret int %cast1004
-end
-