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.
48 lines
1.1 KiB
48 lines
1.1 KiB
9 years ago
|
/*
|
||
9 years ago
|
* Copyright (c) 2015 - present Facebook, Inc.
|
||
|
* All rights reserved.
|
||
|
*
|
||
|
* This source code is licensed under the BSD style license found in the
|
||
|
* LICENSE file in the root directory of this source tree. An additional grant
|
||
|
* of patent rights can be found in the PATENTS file in the same directory.
|
||
|
*/
|
||
9 years ago
|
|
||
|
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) {
|
||
9 years ago
|
const int& r = a ? b : 1;
|
||
9 years ago
|
return 1 / r;
|
||
|
}
|
||
|
|
||
9 years ago
|
int div0_choose_lvalue() { return 1 / choose_lvalue(1); }
|
||
9 years ago
|
|
||
9 years ago
|
int div1_choose_lvalue() { return 1 / choose_lvalue(0); }
|
||
9 years ago
|
|
||
9 years ago
|
int div0_choose_rvalue() { return 1 / choose_rvalue(1); }
|
||
9 years ago
|
|
||
9 years ago
|
int div1_choose_rvalue() { return 1 / choose_rvalue(0); }
|
||
9 years ago
|
|
||
9 years ago
|
int div0_assign_conditional() { return 1 / assign_conditional(0); }
|
||
9 years ago
|
|
||
9 years ago
|
int div1_assign_conditional() { return 1 / assign_conditional(1); }
|
||
9 years ago
|
|
||
9 years ago
|
int div0_temp_lvalue() { return div_temp_lvalue(1, 0); }
|
||
9 years ago
|
|
||
9 years ago
|
int div1_temp_lvalue() { return div_temp_lvalue(0, 1); }
|