brintos

brintos / llvm-project-archived public Read only

0
0
Text · 622 B · 59f8304 Raw
17 lines · plain
1! Test that -flang-experimental-hlfir and -flang-deprecated-no-hlfir2! options cannot be both used.3 4!--------------------------5! FLANG DRIVER (flang)6!--------------------------7! RUN: not %flang -flang-experimental-hlfir -flang-deprecated-no-hlfir %s 2>&1 | FileCheck %s8 9!-----------------------------------------10! FRONTEND FLANG DRIVER (flang -fc1)11!-----------------------------------------12! RUN: not %flang_fc1 -emit-llvm -flang-experimental-hlfir -flang-deprecated-no-hlfir %s 2>&1 | FileCheck %s13 14! CHECK:error: Options '-flang-experimental-hlfir' and '-flang-deprecated-no-hlfir' cannot be both specified15 16end17