We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 211b51e commit 2a227b8Copy full SHA for 2a227b8
clang/test/Preprocessor/preprocess-cpp-output.c
@@ -0,0 +1,9 @@
1
+// RUN: %clang_cc1 -E -x c %s | FileCheck %s --check-prefixes=EXPANDED
2
+// RUN: %clang_cc1 -E -x cpp-output %s | FileCheck %s --check-prefixes=EXPANDED
3
+
4
+// EXPANDED: void __attribute__((__attribute__((always_inline)))) foo()
5
6
+#define always_inline __attribute__((always_inline))
7
+void __attribute__((always_inline)) foo() {
8
+ return 4;
9
+}
0 commit comments