diff options
author | Chris Lattner <sabre@nondot.org> | 2010-02-09 00:11:10 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-02-09 00:11:10 +0000 |
commit | bbb8c2a64d92bb0539b33ba36c570338ceff9b8c (patch) | |
tree | b7c11c1539c31fe08f2bd178d7ee49bf4bbbcc08 /lib | |
parent | 6e478fa5cdb3fc6cf1fe40825b1edb9ed69dbfca (diff) | |
download | external_llvm-bbb8c2a64d92bb0539b33ba36c570338ceff9b8c.zip external_llvm-bbb8c2a64d92bb0539b33ba36c570338ceff9b8c.tar.gz external_llvm-bbb8c2a64d92bb0539b33ba36c570338ceff9b8c.tar.bz2 |
move PR6212 to this file.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95624 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/README.txt | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/lib/Target/README.txt b/lib/Target/README.txt index 7ba7ac9..4fd46a8 100644 --- a/lib/Target/README.txt +++ b/lib/Target/README.txt @@ -1794,3 +1794,28 @@ declare void @bar() nounwind The shift should be eliminated. Testcase derived from gcc. //===---------------------------------------------------------------------===// + +These compile into different code, one gets recognized as a switch and the +other doesn't due to phase ordering issues (PR6212): + +int test1(int mainType, int subType) { + if (mainType == 7) + subType = 4; + else if (mainType == 9) + subType = 6; + else if (mainType == 11) + subType = 9; + return subType; +} + +int test2(int mainType, int subType) { + if (mainType == 7) + subType = 4; + if (mainType == 9) + subType = 6; + if (mainType == 11) + subType = 9; + return subType; +} + +//===---------------------------------------------------------------------===// |