add compilable testcase

llvm-svn: 30268
This commit is contained in:
Chris Lattner 2006-09-11 22:57:51 +00:00
parent 3592523342
commit 6e7286f72a
1 changed files with 6 additions and 1 deletions

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: