mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-17 23:36:40 +00:00

Summary: This change introduces two files that show exaples of the always/never instrument files that can be provided to clang. We don't add these as defaults yet in clang, which we can do later on (in a separate change). We also add a test that makes sure that these apply in the compiler-rt project tests, and that changes in clang don't break the expectations in compiler-rt. Reviewers: pelikan, kpw Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D34669 llvm-svn: 306502
7 lines
282 B
Plaintext
7 lines
282 B
Plaintext
# List of function matchers common to C/C++ applications that make sense to
|
|
# never instrument. You can use this as an argument to
|
|
# -fxray-never-instrument=<path> along with your project-specific lists.
|
|
|
|
# Never instrument any function whose symbol starts with __xray.
|
|
fun:__xray*
|