curdeius added a comment.

In D123676#3515949 <https://reviews.llvm.org/D123676#3515949>, @krasimir wrote:

> It looks like this regressed the following example by adding an unwanted 
> level of indentation to the `#elif B` branch:

Sure, I'll have a look.
It seems that even this:

  MACRO_BEGIN
  #if A
  int f();
  #else
  int f();
  #endif

gets misindented:

  MACRO_BEGIN
  #if A
  int f();
  #else
      int
      f();
  #endif


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D123676

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

Reply via email to