brintos

brintos / llvm-project-archived public Read only

0
0
Text · 680 B · bae40e5 Raw
24 lines · plain
1! Ensure arguments -fd-lines-as-comments and -fd-lines-as-code display the correct output with -E.2 3!--------------------------4! Default behavior is equivalent as -fd-lines-as-comments5!--------------------------6! RUN: %flang -E -ffixed-form %s 2>&1 | FileCheck %s --check-prefix=COMMENT7! RUN: %flang -E -ffixed-form -fd-lines-as-comments %s 2>&1 | FileCheck %s --check-prefix=COMMENT8! RUN: %flang -E -ffixed-form -fd-lines-as-code %s 2>&1 | FileCheck %s --check-prefix=CODE9 10      program FixedForm11d     end12D     end13      end14 15! COMMENT: program FixedForm16! COMMENT: end17! COMMENT-NOT: end18! COMMENT-NOT: end19 20! CODE: program FixedForm21! CODE: end22! CODE: end23! CODE: end24