1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

add compilable testcase

llvm-svn: 30268
This commit is contained in:
Chris Lattner 2006-09-11 22:57:51 +00:00
parent 0208f77fb0
commit e7cd7508ed

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: