You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1021 B
46 lines
1021 B
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
int choose_lvalue(int a) {
|
|
int v1 = 0, v2 = 1;
|
|
int v3 = a ? v1 : v2;
|
|
return v3;
|
|
}
|
|
|
|
int choose_rvalue(int a) {
|
|
int v1 = 0;
|
|
int v3 = a ? v1 : 1;
|
|
return v3;
|
|
}
|
|
|
|
int assign_conditional(int a) {
|
|
int v1 = 0, v2 = 0;
|
|
(a ? v1 : v2) = 1;
|
|
return v1;
|
|
}
|
|
|
|
int div_temp_lvalue(int a, int b) {
|
|
const int& r = a ? b : 1;
|
|
return 1 / r;
|
|
}
|
|
|
|
int div0_choose_lvalue() { return 1 / choose_lvalue(1); }
|
|
|
|
int div1_choose_lvalue() { return 1 / choose_lvalue(0); }
|
|
|
|
int div0_choose_rvalue() { return 1 / choose_rvalue(1); }
|
|
|
|
int div1_choose_rvalue() { return 1 / choose_rvalue(0); }
|
|
|
|
int div0_assign_conditional() { return 1 / assign_conditional(0); }
|
|
|
|
int div1_assign_conditional() { return 1 / assign_conditional(1); }
|
|
|
|
int div0_temp_lvalue() { return div_temp_lvalue(1, 0); }
|
|
|
|
int div1_temp_lvalue() { return div_temp_lvalue(0, 1); }
|