add compilable testcase

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30268 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-09-11 22:57:51 +00:00
parent 3697e307d7
commit 2a33a3f08d

View File

@ -581,7 +581,12 @@ boundary to improve performance.
Codegen:
if ((variable == 4) || (variable == 6)) { stuff }
int f(int a, int b) {
if (a == 4 || a == 6)
b++;
return b;
}
as: