diff options
author | Bill Wendling <isanbard@gmail.com> | 2006-10-19 23:21:59 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2006-10-19 23:21:59 +0000 |
commit | e617474b8d1bd14b928a4b96329c726e477bfdf1 (patch) | |
tree | 69826344633a45c6ac71e5c1c10aae062c3ad56d | |
parent | c70ddad2b7d7abffeaaace913939fb3c5c55a38b (diff) |
Testcase for P926
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31058 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/X86/2006-10-19-SwitchUnnecessaryBranching.ll | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test/CodeGen/X86/2006-10-19-SwitchUnnecessaryBranching.ll b/test/CodeGen/X86/2006-10-19-SwitchUnnecessaryBranching.ll new file mode 100644 index 0000000000..4c1a94623e --- /dev/null +++ b/test/CodeGen/X86/2006-10-19-SwitchUnnecessaryBranching.ll @@ -0,0 +1,27 @@ +; RUN: llvm-as < %s | llc -march=x86 | %prcontext "jg LBB1_5" 1 | grep "LBB1_4:" + +%str = internal constant [14 x sbyte] c"Hello world!\0A\00" ; <[14 x sbyte]*> [#uses=1] +%str = internal constant [13 x sbyte] c"Blah world!\0A\00" ; <[13 x sbyte]*> [#uses=1] + +implementation ; Functions: + +int %main(int %argc, sbyte** %argv) { +entry: + switch int %argc, label %UnifiedReturnBlock [ + int 1, label %bb + int 2, label %bb2 + ] + +bb: ; preds = %entry + %tmp1 = tail call int (sbyte*, ...)* %printf( sbyte* getelementptr ([14 x sbyte]* %str, int 0, uint 0) ) ; <int> [#uses=0] + ret int 0 + +bb2: ; preds = %entry + %tmp4 = tail call int (sbyte*, ...)* %printf( sbyte* getelementptr ([13 x sbyte]* %str, int 0, uint 0) ) ; <int> [#uses=0] + ret int 0 + +UnifiedReturnBlock: ; preds = %entry + ret int 0 +} + +declare int %printf(sbyte*, ...) |