xref: /llvm-project/clang/test/Frontend/llvmplugins.c (revision 0d501f38f348cf046d40c9baee12f0c5145b6d8c)
1 // RUN: %clang_cc1 -load %llvmshlibdir/LLVMPrintFunctionNames%pluginext -o /dev/null -emit-llvm %s 2>&1 | FileCheck %s
2 // REQUIRES: plugins, examples
3 
4 // CHECK: [PrintPass] Found function: x
x(int y)5 int x(int y){ return y; }
6