aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-family
diff options
context:
space:
mode:
authorMartin Liska <mliska@suse.cz>2022-10-07 10:22:24 +0200
committerMartin Liska <mliska@suse.cz>2022-10-07 10:22:24 +0200
commite1d1842b5432472330384d1523bb3c3132c4fea0 (patch)
tree5aca250d577366471d12bf8d8501157d8c0876ee /gcc/c-family
parentbd0e35188f2a40a428314ad10e10ab5b0926f935 (diff)
downloadgcc-e1d1842b5432472330384d1523bb3c3132c4fea0.zip
gcc-e1d1842b5432472330384d1523bb3c3132c4fea0.tar.gz
gcc-e1d1842b5432472330384d1523bb3c3132c4fea0.tar.bz2
fix clang warnings
Fixes: gcc/c-family/name-hint.h:109:66: warning: unqualified call to 'std::move' [-Wunqualified-std-cast-call] gcc/config/i386/i386-expand.cc:1351:9: warning: argument 'operands' of type 'rtx[3]' (aka 'rtx_def *[3]') with mismatched bound [-Warray-parameter] gcc/config/i386/i386.cc:15635:8: warning: argument 'operands' of type 'rtx[2]' (aka 'rtx_def *[2]') with mismatched bound [-Warray-parameter] gcc/cp/module.cc:17482:51: warning: argument 'counts' of type 'unsigned int[8]' with mismatched bound [-Warray-parameter] gcc/cp/module.cc:17508:37: warning: argument 'counts' of type 'unsigned int[8]' with mismatched bound [-Warray-parameter] gcc/cp/name-lookup.cc:6385:16: warning: unqualified call to 'std::move' [-Wunqualified-std-cast-call] gcc/c-family/ChangeLog: * name-hint.h: Use std::move. gcc/ChangeLog: * config/i386/i386-protos.h (ix86_binary_operator_ok): Add array size to function parameter. (ix86_unary_operator_ok): Likewise. gcc/cp/ChangeLog: * module.cc (enum module_state_counts): Use array size. * name-lookup.cc (class namespace_limit_reached): Likewise. (class module_state): Move up in the file.
Diffstat (limited to 'gcc/c-family')
-rw-r--r--gcc/c-family/name-hint.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-family/name-hint.h b/gcc/c-family/name-hint.h
index df733e7..98392ce 100644
--- a/gcc/c-family/name-hint.h
+++ b/gcc/c-family/name-hint.h
@@ -106,7 +106,7 @@ public:
/* Take ownership of this name_hint's deferred_diagnostic, for use
in chaining up deferred diagnostics. */
- std::unique_ptr<deferred_diagnostic> take_deferred () { return move (m_deferred); }
+ std::unique_ptr<deferred_diagnostic> take_deferred () { return std::move (m_deferred); }
/* Call this on a name_hint if the corresponding warning was not emitted,
in which case we should also not emit the deferred_diagnostic. */