From 90970609f24bc3591e4f0010843d3fcb26547bbb Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 24 Feb 2005 02:13:50 +0000 Subject: [PATCH] add another testcase to make sure it gets turned into a switch (answer: yes it does) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20291 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Transforms/SimplifyCFG/switch_create.ll | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/test/Transforms/SimplifyCFG/switch_create.ll b/test/Transforms/SimplifyCFG/switch_create.ll index 95d7d4a0f64..ba1b7d65dc2 100644 --- a/test/Transforms/SimplifyCFG/switch_create.ll +++ b/test/Transforms/SimplifyCFG/switch_create.ll @@ -31,3 +31,18 @@ F: } +void %test3(int %V) { + %C1 = seteq int %V, 4 + br bool %C1, label %T, label %N +N: + %C2 = seteq int %V, 17 + br bool %C2, label %T, label %F +T: + call void %foo1() + ret void +F: + call void %foo2() + ret void +} + +