Reland [OffloadBundler] Compress bundles over 4GB (#122307)
[llvm-project.git] / flang / test / Preprocessing / renaming.F
blobc39ab6fb029a05f8cb588ac02153be39bafb8f7f
1 ! RUN: %flang -E %s | FileCheck %s
2 ! CHECK: ((1) * 10000 + (11) * 100)
3 ! Ensure that a keyword-like macro can be used to rename a
4 ! function-like macro.
5 #define TO_VERSION2(MAJOR, MINOR) ((MAJOR) * 10000 + (MINOR) * 100)
6 #define TO_VERSION TO_VERSION2
7       print *, TO_VERSION(1,11)
8       end