* contrib/ari/gdb_ari.sh (OP eol rule): Also check

addtion, subtraction, multiplication and division binary operator.
This commit is contained in:
Pierre Muller 2013-03-20 16:13:10 +00:00
parent 460014f572
commit e3f1ad4fd2
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2013-03-20 Pierre Muller <muller@sourceware.org>
* contrib/ari/gdb_ari.sh (OP eol rule): Also check
addtion, subtraction, multiplication and division binary operator.
2013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
Code cleanup.

View File

@ -609,7 +609,11 @@ BEGIN { doc["OP eol"] = "\
Do not use &&, or || at the end of a line"
category["OP eol"] = ari_code
}
/(\|\||\&\&|==|!=)[[:space:]]*$/ {
# * operator needs a special treatment as it can be a
# valid end of line for a pointer type definition
# Only catch case where an assignment or an opening brace is present
/(\|\||\&\&|==|!=|[[:space:]][+\-\/])[[:space:]]*$/ \
|| /(\(|=)[[:space:]].*[[:space:]]\*[[:space:]]*$/ {
fail("OP eol")
}