mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-19 06:31:18 +00:00
New testcase for the lowerswitch pass
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5977 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
f98358efc7
commit
215f0b77c8
19
test/Transforms/LowerSwitch/2003-05-01-PHIProblem.ll
Normal file
19
test/Transforms/LowerSwitch/2003-05-01-PHIProblem.ll
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
; RUN: as < %s | opt -lowerswitch
|
||||||
|
|
||||||
|
void %child(int %ct.1) {
|
||||||
|
entry: ; No predecessors!
|
||||||
|
switch uint 0, label %return [
|
||||||
|
uint 2, label %UnifiedExitNode
|
||||||
|
uint 3, label %UnifiedExitNode
|
||||||
|
uint 0, label %return
|
||||||
|
uint 1, label %UnifiedExitNode
|
||||||
|
]
|
||||||
|
|
||||||
|
return: ; preds = %entry, %entry
|
||||||
|
%result.0 = phi %struct.quad_struct* [ null, %entry ], [ null, %entry ] ; <%struct.quad_struct*> [#uses=0]
|
||||||
|
br label %UnifiedExitNode
|
||||||
|
|
||||||
|
UnifiedExitNode: ; preds = %entry, %return, %entry, %entry
|
||||||
|
ret void
|
||||||
|
}
|
||||||
|
|
10
test/Transforms/LowerSwitch/Makefile
Normal file
10
test/Transforms/LowerSwitch/Makefile
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
|
||||||
|
LEVEL = ../../../..
|
||||||
|
include $(LEVEL)/test/Makefile.tests
|
||||||
|
|
||||||
|
TESTS := $(wildcard *.ll)
|
||||||
|
|
||||||
|
all:: $(addprefix Output/, $(TESTS:%.ll=%.ll.out))
|
||||||
|
|
||||||
|
Output/%.ll.out: %.ll Output/.dir $(LOPT)
|
||||||
|
-$(TESTRUNR) $<
|
Loading…
x
Reference in New Issue
Block a user