Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Project
/
android_art
/
a5175541c197e7bf9b03651ea5da4e64a2ac2d27
/
.
/
test
/
663-checker-select-generator
/
info.txt
blob: 792779f674fb9a13e864ad13e66d0d7fa7107a3c [
file
] [
log
] [
blame
]
Test for select generation for conditional returns.
Tests the rewriting from:
If [ Condition ]
/ \
false branch true branch
return FalseValue return TrueValue
to:
true branch
false branch
return Select [FalseValue, TrueValue, Condition]