[MLIR][NVVM] Add Op for TMA Store with reduction (#118853)
[llvm-project.git] / flang / test / Preprocessing / include-comment.F90
blob7da4751f725a854d339740a3797d234f3182ed24
1 ! RUN: %flang -pedantic -I%S -E %s 2>&1 | FileCheck %s
2 ! CHECK-NOT: :3:
3 #include <empty.h> ! comment
4 ! CHECK-NOT: :5:
5 #include <empty.h> /* comment */
6 ! CHECK-NOT: :7:
7 #include <empty.h> !comment
8 ! CHECK: :9:10: portability: #include: extra stuff ignored after file name
9 #include <empty.h> comment
10 ! CHECK-NOT: :11:
11 #include "empty.h" ! comment
12 ! CHECK-NOT: :13:
13 #include "empty.h" /* comment */
14 ! CHECK-NOT: :15:
15 #include "empty.h" !comment
16 ! CHECK: :17:10: portability: #include: extra stuff ignored after file name
17 #include "empty.h" comment
18 end