[TableGen] Fix validateOperandClass for non Phyical Reg (#118146)
[llvm-project.git] / clang / test / Driver / fplugin.c
blobd0aaa9efe62356661e9a3755ae85b7a7e1058a40
1 // Check that all -fplugin arguments are converted to -load
3 // RUN: %clang -c %s -fplugin=foo.so -### 2>&1 | FileCheck %s --check-prefix=CHECK1
4 // RUN: %clang -c %s -fplugin=foo.so -fplugin=bar.so -### 2>&1 | FileCheck %s --check-prefix=CHECK2
6 // CHECK1: "-load" "foo.so"
7 // CHECK2: "-load" "foo.so" "-load" "bar.so"