James Price | 4cc4315 | 2021-09-02 13:49:59 +0000 | [diff] [blame] | 1 | void main() { |
| 2 | float signed_literal[4] = (float[4])0; |
| 3 | float unsigned_literal[4] = (float[4])0; |
| 4 | float signed_constant[4] = (float[4])0; |
| 5 | float unsigned_constant[4] = (float[4])0; |
Ben Clayton | 8cd5c61 | 2023-02-24 21:02:40 +0000 | [diff] [blame] | 6 | float shr_const_expr[4] = (float[4])0; |
| 7 | unsigned_literal = signed_literal; |
| 8 | signed_constant = signed_literal; |
| 9 | unsigned_constant = signed_literal; |
| 10 | shr_const_expr = signed_literal; |
James Price | 4cc4315 | 2021-09-02 13:49:59 +0000 | [diff] [blame] | 11 | return; |
| 12 | } |