Reland [OffloadBundler] Compress bundles over 4GB (#122307)
[llvm-project.git] / flang / test / Preprocessing / ff-include-args.F
blob81e4102598c2fdcd7e54a8aa5911f884e99a51cc
1 ! RUN: %flang -E %s 2>&1 | FileCheck %s
2 ! CHECK: call foo (  3.14159)
3 ! CHECK: subroutine foo(test)
4       call foo (
5 #include "ff-args.h"
6       end
7 #define TEST
8       subroutine foo(
9 #ifdef TEST
10      +test)
11 #else
12      +)
13 #endif
14       end