Commit 974c0165 by Jakub Jelinek

* ioparm.def: Use 1U << 31 instead of 1 << 31 as flags2 mask.

From-SVN: r250510
parent 2c811fd3
2017-07-25 Jakub Jelinek <jakub@redhat.com>
* ioparm.def: Use 1U << 31 instead of 1 << 31 as flags2 mask.
2017-07-24 Thomas Koenig <tkoenig@gcc.gnu.org> 2017-07-24 Thomas Koenig <tkoenig@gcc.gnu.org>
* dump-parse-tree.c (show_symbol): Show binding label if present. * dump-parse-tree.c (show_symbol): Show binding label if present.
......
...@@ -82,7 +82,7 @@ IOPARM (inquire, read, 1 << 27, char2) ...@@ -82,7 +82,7 @@ IOPARM (inquire, read, 1 << 27, char2)
IOPARM (inquire, write, 1 << 28, char1) IOPARM (inquire, write, 1 << 28, char1)
IOPARM (inquire, readwrite, 1 << 29, char2) IOPARM (inquire, readwrite, 1 << 29, char2)
IOPARM (inquire, convert, 1 << 30, char1) IOPARM (inquire, convert, 1 << 30, char1)
IOPARM (inquire, flags2, 1 << 31, int4) IOPARM (inquire, flags2, 1U << 31, int4)
IOPARM (inquire, asynchronous, 1 << 0, char1) IOPARM (inquire, asynchronous, 1 << 0, char1)
IOPARM (inquire, decimal, 1 << 1, char2) IOPARM (inquire, decimal, 1 << 1, char2)
IOPARM (inquire, encoding, 1 << 2, char1) IOPARM (inquire, encoding, 1 << 2, char1)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment