mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-12 22:26:14 +00:00
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:
parent
3697e307d7
commit
2a33a3f08d
@ -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:
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user