This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] Fix #pragma omp atomic


On Thu, Mar 6, 2008 at 12:36, Jakub Jelinek <jakub@redhat.com> wrote:

>  -      return expr == addr;
>  +      if (expr == addr)
>  +       return true;
>  +      return (TREE_CODE (addr) == ADDR_EXPR && TREE_CODE (expr) == ADDR_EXPR
>  +             && TREE_OPERAND (addr, 0) == TREE_OPERAND (expr, 0));

Formatting nit.  These should be vertically aligned.


Diego.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]