GCC with patches for OS216
修訂 | 48a70d445a13ca157ee8acbe0ceeee8433faa875 (tree) |
---|---|
時間 | 2018-03-24 01:06:12 |
作者 | Andrew Macleod <amacleod@gcc....> |
Commiter | Andrew Macleod |
Dont check invalid ssa names, like floats
From-SVN: r258817
@@ -512,6 +512,8 @@ path_ranger::path_range_of_def (irange &r, gimple *g) | ||
512 | 512 | unsigned x; |
513 | 513 | edge e; |
514 | 514 | |
515 | + if (!valid_irange_ssa (phi_def)) | |
516 | + return false; | |
515 | 517 | if (get_global_ssa_range (r, phi_def)) |
516 | 518 | return true; |
517 | 519 |