diff options
author | Uros Bizjak <ubizjak@gmail.com> | 2023-06-06 19:11:29 +0200 |
---|---|---|
committer | Uros Bizjak <ubizjak@gmail.com> | 2023-06-06 19:16:54 +0200 |
commit | 585c660f041c57694a61b3e65085af5a54431be4 (patch) | |
tree | aaa7cabd88e9b1c77e4c379e060fd75cd1956531 | |
parent | f1af7d65ff64fe7102d1490ef46ea491a533e641 (diff) | |
download | gcc-585c660f041c57694a61b3e65085af5a54431be4.zip gcc-585c660f041c57694a61b3e65085af5a54431be4.tar.gz gcc-585c660f041c57694a61b3e65085af5a54431be4.tar.bz2 |
reload1: Change return type of predicate function from int to bool
gcc/ChangeLog:
* rtl.h (function_invariant_p): Change return type from int to bool.
* reload1.cc (function_invariant_p): Change return type from
int to bool and adjust function body accordingly.
-rw-r--r-- | gcc/reload1.cc | 4 | ||||
-rw-r--r-- | gcc/rtl.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/gcc/reload1.cc b/gcc/reload1.cc index 9ec2cb9..9ba822d 100644 --- a/gcc/reload1.cc +++ b/gcc/reload1.cc @@ -5949,14 +5949,14 @@ free_for_value_p (int regno, machine_mode mode, int opnum, return 1; } -/* Return nonzero if the rtx X is invariant over the current function. */ +/* Return true if the rtx X is invariant over the current function. */ /* ??? Actually, the places where we use this expect exactly what is tested here, and not everything that is function invariant. In particular, the frame pointer and arg pointer are special cased; pic_offset_table_rtx is not, and we must not spill these things to memory. */ -int +bool function_invariant_p (const_rtx x) { if (CONSTANT_P (x)) @@ -4307,7 +4307,7 @@ extern void fix_register (const char *, int, int); extern const HARD_REG_SET *valid_mode_changes_for_regno (unsigned int); /* In reload1.cc */ -extern int function_invariant_p (const_rtx); +extern bool function_invariant_p (const_rtx); /* In calls.cc */ enum libcall_type |