Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix issue open64-compiler#38 for if-convert
1. the be will crash if compile the code like that: ``` int sre_random(void) { long rnd1; static long tbl[64]; int i; for (i = 0; i < 64; i++) { tbl[i] = rnd1; if (tbl[i] < 0) tbl[i] += 0; } return 0; } ``` Signed-off-by: Zhijin Zeng <[email protected]>
- Loading branch information