17 lines · plain
1! RUN: %flang -### -S -o - -fverbose-asm %s 2>&1 | FileCheck %s --check-prefix=FORWARDING2! FORWARDING: -fverbose-asm3 4! RUN: %flang -S -o - -fverbose-asm %s | FileCheck %s --check-prefix=VERBOSE5! RUN: %flang_fc1 -S -o - -fverbose-asm %s | FileCheck %s --check-prefix=VERBOSE6 7! RUN: %flang -S -o - %s | FileCheck %s --check-prefix=QUIET8! RUN: %flang_fc1 -S -o - %s | FileCheck %s --check-prefix=QUIET9! RUN: %flang -S -o - -fverbose-asm -fno-verbose-asm %s | FileCheck %s --check-prefix=QUIET10! RUN: %flang_fc1 -S -o - -fverbose-asm -fno-verbose-asm %s | FileCheck %s --check-prefix=QUIET11 12! VERBOSE: -- Begin function _QQmain13! QUIET-NOT: -- Begin function _QQmain14program test15 16end program17