diff --git a/test/Feature/Makefile b/test/Feature/Makefile index 349c1e0c211..ffbad50e6bd 100644 --- a/test/Feature/Makefile +++ b/test/Feature/Makefile @@ -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 index 7ea38cbfac0..00000000000 --- a/test/Feature/fib.ll +++ /dev/null @@ -1,28 +0,0 @@ -implementation - -uint "fib"(uint %n) -begin -bb1: ;[#uses=0] - %cond1000 = setgt uint %n, 1 ; [#uses=1] - br bool %cond1000, label %bb3, label %bb2 - -bb2: ;[#uses=1] - ret uint 1 - -bb3: ;[#uses=1] - %reg112 = sub uint %n, 2 ; [#uses=1] - %reg113 = call uint %fib( uint %reg112 ) ; [#uses=1] - %reg115 = sub uint %n, 1 ; [#uses=1] - %reg116 = call uint %fib( uint %reg115 ) ; [#uses=1] - %reg110 = add uint %reg113, %reg116 ; [#uses=1] - ret uint %reg110 -end - -int "main"(int %argc, sbyte * * %argv) -begin -bb1: ;[#uses=0] - %reg109 = call uint %fib( uint 6 ) ; [#uses=1] - %cast1004 = cast uint %reg109 to int ; [#uses=1] - ret int %cast1004 -end -