krasimir added a comment.

It appears that this causes a regression by adding a space in-between pointer 
dereferences `*p` -> `* p` in some cases, e.g. formatting this with llvm style:

  // before
  void f() {
    while (p < a && *p == 'a')
      p++;
  }
  // after
  void f() {
    while (p < a && * p == 'a')
      p++;
  }


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D113319/new/

https://reviews.llvm.org/D113319

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to