1// RUN: %clang -ccc-print-phases --target=x86_64-linux-gnu \ 2// RUN: -x hip --cuda-gpu-arch=gfx803 -c \ 3// RUN: %S/Inputs/hip_multiple_inputs/a.cu \ 4// RUN: %S/Inputs/hip_multiple_inputs/b.hip 2>&1 \ 5// RUN: | FileCheck %s 6 7// RUN: not %clang -ccc-print-phases --target=x86_64-linux-gnu \ 8// RUN: --cuda-gpu-arch=gfx803 -c \ 9// RUN: %S/Inputs/hip_multiple_inputs/a.cu \ 10// RUN: %S/Inputs/hip_multiple_inputs/b.hip 2>&1 \ 11// RUN: | FileCheck -check-prefix=MIX %s 12 13// RUN: not %clang -ccc-print-phases --target=x86_64-linux-gnu \ 14// RUN: --cuda-gpu-arch=gfx803 -c \ 15// RUN: --hip-link %S/Inputs/hip_multiple_inputs/a.cu 2>&1 \ 16// RUN: | FileCheck -check-prefix=MIX %s 17 18// CHECK-NOT: error: mixed CUDA and HIP compilation is not supported 19// MIX: error: mixed CUDA and HIP compilation is not supported 20