mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-05-14 01:46:41 +00:00
6 lines
221 B
C
6 lines
221 B
C
// RUN: %clang_cc1 -load %llvmshlibdir/LLVMPrintFunctionNames%pluginext -S -o /dev/null -emit-llvm %s 2>&1 | FileCheck %s
|
|
// REQUIRES: plugins, examples
|
|
|
|
// CHECK: [PrintPass] Found function: x
|
|
int x(int y){ return y; }
|