Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

clang-format 19 idempotent regression from 18 for #define within a function #118334

Closed
JohnC32 opened this issue Dec 2, 2024 · 3 comments · Fixed by #118513
Closed

clang-format 19 idempotent regression from 18 for #define within a function #118334

JohnC32 opened this issue Dec 2, 2024 · 3 comments · Fixed by #118513
Assignees

Comments

@JohnC32
Copy link

JohnC32 commented Dec 2, 2024

Running clang-format 19.1.4 twice produces different results when we have #define statements within an initializer. Running with clang-format 18.1.1 shows no difference on repeated invocations.

Given idempotent_define.cpp

namespace Foo {
void foo() {
#define GEN_ID(_x) \
    char const *_x {    \
        #_x              \
    }
    GEN_ID(one);
    GEN_ID(two);
}
}

using _clang-format:

---
BasedOnStyle: Google
IndentWidth: 4
ColumnLimit: 100
...

clang-format 19.1.4 yields the following differences on successive runs. Notice that define flips between being on a single line and multiple lines.

/path/to/llvm-19.1.4/bin/clang-format -style=file idempotent_define.cpp >out.19.1.4.a.cpp 2>&1
/path/to/llvm-19.1.4/bin/clang-format -style=file out.19.1.4.a.cpp >out.19.1.4.b.cpp 2>&1
/path/to/llvm-19.1.4/bin/clang-format -style=file out.19.1.4.b.cpp >out.19.1.4.c.cpp 2>&1
diff -u out.19.1.4.a.cpp out.19.1.4.b.cpp
--- out.19.1.4.a.cpp	2024-12-02 13:24:50.702497070 -0500
+++ out.19.1.4.b.cpp	2024-12-02 13:24:50.714497177 -0500
@@ -1,6 +1,7 @@
 namespace Foo {
 void foo() {
-#define GEN_ID(_x) char const *_x{#_x}
+#define GEN_ID(_x) \
+    char const *_x { #_x }
     GEN_ID(one);
     GEN_ID(two);
 }
diff -u out.19.1.4.b.cpp out.19.1.4.c.cpp
--- out.19.1.4.b.cpp	2024-12-02 13:24:50.714497177 -0500
+++ out.19.1.4.c.cpp	2024-12-02 13:24:50.733497347 -0500
@@ -1,7 +1,6 @@
 namespace Foo {
 void foo() {
-#define GEN_ID(_x) \
-    char const *_x { #_x }
+#define GEN_ID(_x) char const *_x{#_x}
     GEN_ID(one);
     GEN_ID(two);
 }
diff -u out.19.1.4.a.cpp out.19.1.4.c.cpp
@EugeneZelenko EugeneZelenko added the regression:19 Regression in 19 release label Dec 2, 2024
@owenca
Copy link
Contributor

owenca commented Dec 3, 2024

Bisected it to commit ee23599. IMO this is not a regression because the l_brace above #_x was already incorrectly annotated as FunctionLBrace before the commit.

@owenca owenca removed the regression:19 Regression in 19 release label Dec 3, 2024
@owenca owenca self-assigned this Dec 3, 2024
owenca added a commit to owenca/llvm-project that referenced this issue Dec 3, 2024
@owenca owenca closed this as completed in 54ca1c4 Dec 11, 2024
@EugeneZelenko EugeneZelenko added the regression:19 Regression in 19 release label Dec 11, 2024
@owenca
Copy link
Contributor

owenca commented Dec 11, 2024

/cherry-pick 54ca1c4

@llvmbot
Copy link
Member

llvmbot commented Dec 11, 2024

/pull-request #119503

@tru tru moved this from Needs Triage to Done in LLVM Release Status Dec 17, 2024
tru pushed a commit to llvmbot/llvm-project that referenced this issue Jan 13, 2025

Verified

This commit was signed with the committer’s verified signature.
tru Tobias Hieta
Fixes llvm#118334.

(cherry picked from commit 54ca1c4)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Development

Successfully merging a pull request may close this issue.

4 participants