[LoopVectorizer] Add support for chaining partial reductions (#120272)
[llvm-project.git] / clang / test / Driver / warn-fsyntax-only.c
blobd13bab41c047ada359a2bb31e6946cfb77c8cb10
1 // RUN: %clang --target=x86_64 -fsyntax-only -E %s 2>&1 | FileCheck %s --check-prefix=CHECK-PP
2 // RUN: %clang --target=x86_64 -fsyntax-only -S %s 2>&1 | FileCheck %s --check-prefix=CHECK-ASM
3 // RUN: %clang --target=x86_64 -fsyntax-only -c %s 2>&1 | FileCheck %s --check-prefix=CHECK-OBJ
5 // CHECK-PP: warning: argument unused during compilation: '-fsyntax-only' [-Wunused-command-line-argument]
6 // CHECK-ASM: warning: argument unused during compilation: '-S' [-Wunused-command-line-argument]
7 // CHECK-OBJ: warning: argument unused during compilation: '-c' [-Wunused-command-line-argument]