Lines Matching full:flang
3 ! FLANG DRIVER (flang)
8 ! RUN: %flang -E %s %S/Inputs/hello.f90 | FileCheck %s --match-full-lines -check-prefix=FLANG
11 ! RUN: not %flang -E -o - %S/Inputs/hello.f90 %s 2>&1 | FileCheck %s --match-full-lines -check-prefix=ERROR
12 ! RUN: not %flang -E -o %t %S/Inputs/hello.f90 %s 2>&1 | FileCheck %s --match-full-lines -check-prefix=ERROR
15 ! FLANG FRONTEND DRIVER (flang -fc1)
30 ! TEST 1: By default, `flang` prints the output from all input files to
32 ! FLANG-LABEL: Program arithmetic
33 ! FLANG-NEXT: Integer :: i, j
34 ! FLANG-NEXT: i = 2; j = 3; i= i * j;
35 ! FLANG-NEXT: End Program arithmetic
37 ! FLANG-LABEL: program hello
38 ! FLANG-NEXT: write(*,*), "Hello world!"
39 ! FLANG-NEXT:end program hello
42 ! ERROR: flang{{.*}}: error: cannot specify -o when generating multiple output files