brintos

brintos / llvm-project-archived public Read only

0
0
Text · 294 B · c39ab6f Raw
9 lines · plain
1! RUN: %flang -E %s | FileCheck %s2! CHECK: ((1) * 10000 + (11) * 100)3! Ensure that a keyword-like macro can be used to rename a4! function-like macro.5#define TO_VERSION2(MAJOR, MINOR) ((MAJOR) * 10000 + (MINOR) * 100)6#define TO_VERSION TO_VERSION27      print *, TO_VERSION(1,11)8      end9