aboutsummaryrefslogtreecommitdiff
path: root/flang/lib/Frontend/CompilerInvocation.cpp
diff options
context:
space:
mode:
authorClement Courbet <courbet@google.com>2025-01-15 13:07:42 +0100
committerGitHub <noreply@github.com>2025-01-15 13:07:42 +0100
commit6affc1837537a802531a5394535f1f0b7ca865cb (patch)
tree0adcac9303c35a8e5d0f593df5717ac46b030318 /flang/lib/Frontend/CompilerInvocation.cpp
parentc8bbbaa5c70a32f31a072740c87708be8f15f831 (diff)
downloadllvm-6affc1837537a802531a5394535f1f0b7ca865cb.zip
llvm-6affc1837537a802531a5394535f1f0b7ca865cb.tar.gz
llvm-6affc1837537a802531a5394535f1f0b7ca865cb.tar.bz2
[clang-reorder-fields] Move trailing comments. (#122918)
Currently, trailing comments get mixed up: ``` struct Foo { int a; // This one is the cool field // within the struct. int b; }; ``` becomes: ``` struct Foo { int b; // This one is the cool field // within the struct. int a; }; ``` This should be: ``` struct Foo { int b; int a; // This one is the cool field // within the struct. }; ```
Diffstat (limited to 'flang/lib/Frontend/CompilerInvocation.cpp')
0 files changed, 0 insertions, 0 deletions