mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
add compilable testcase
llvm-svn: 30268
This commit is contained in:
parent
0208f77fb0
commit
e7cd7508ed
@ -581,7 +581,12 @@ boundary to improve performance.
|
|||||||
|
|
||||||
Codegen:
|
Codegen:
|
||||||
|
|
||||||
if ((variable == 4) || (variable == 6)) { stuff }
|
int f(int a, int b) {
|
||||||
|
if (a == 4 || a == 6)
|
||||||
|
b++;
|
||||||
|
return b;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
as:
|
as:
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user