GCC with patches for OS216
Revisão | 62a2e85772c4aa3be4cf27073f39ce533ba34c6f (tree) |
---|---|
Hora | 2018-04-14 01:19:37 |
Autor | Andrew Macleod <amacleod@gcc....> |
Commiter | Andrew Macleod |
allow kind_type for a constructor with integers
From-SVN: r259376
@@ -82,7 +82,8 @@ class irange | ||
82 | 82 | { set_range (typ, wi::to_wide (lbound), wi::to_wide (ubound), rt); } |
83 | 83 | irange (const irange &); |
84 | 84 | irange (const irange_storage *stor, tree typ) { set_range (stor, typ); } |
85 | - irange (const_tree t, int x, int y) { set_range (t, x, y, PLAIN); } | |
85 | + irange (const_tree t, int x, int y, kind k = PLAIN) | |
86 | + { set_range (t, x, y, k); } | |
86 | 87 | |
87 | 88 | void set_range (const irange_storage *, const_tree); |
88 | 89 | void set_range (const_tree); |