diff options
Diffstat (limited to 'gcc/wide-int.h')
-rw-r--r-- | gcc/wide-int.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/wide-int.h b/gcc/wide-int.h index f172fae..72f74be 100644 --- a/gcc/wide-int.h +++ b/gcc/wide-int.h @@ -158,10 +158,10 @@ along with GCC; see the file COPYING3. If not see However, a little more syntax is required for rtl constants since they do not have an explicit precision. To make an rtl into a wide_int, you have to pair it with a mode. The canonical way to do - this is with std::make_pair as in: + this is with rtx_mode_t as in: rtx r = ... - wide_int x = std::make_pair (r, mode); + wide_int x = rtx_mode_t (r, mode); Similarly, a wide_int can only be constructed from a host value if the target precision is given explicitly, such as in: |