• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

GCC with patches for OS216


Commit MetaInfo

Revision62a2e85772c4aa3be4cf27073f39ce533ba34c6f (tree)
Time2018-04-14 01:19:37
AuthorAndrew Macleod <amacleod@gcc....>
CommiterAndrew Macleod

Log Message

allow kind_type for a constructor with integers

From-SVN: r259376

Change Summary

Incremental Difference

--- a/gcc/range.h
+++ b/gcc/range.h
@@ -82,7 +82,8 @@ class irange
8282 { set_range (typ, wi::to_wide (lbound), wi::to_wide (ubound), rt); }
8383 irange (const irange &);
8484 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); }
8687
8788 void set_range (const irange_storage *, const_tree);
8889 void set_range (const_tree);