[analyzer][NFC] Factor out SymbolManager::get<*> (#121781)
[llvm-project.git] / llvm / test / Instrumentation / DataFlowSanitizer / uninstrumented_local_functions.ll
blobbff9bafa8a65881b675b2a658bbd52b30e137bf8
1 ; RUN: opt < %s -passes=dfsan -dfsan-abilist=%S/Inputs/abilist.txt -S | FileCheck %s
2 target triple = "x86_64-unknown-linux-gnu"
4 define internal i8 @uninstrumented_internal_fun(i8 %in) {
5   ret i8 %in
8 define i8 @call_uninstrumented_internal_fun(i8 %in) {
9   %call = call i8 @uninstrumented_internal_fun(i8 %in)
10   ret i8 %call
12 ; CHECK: define internal i8 @"dfsw$uninstrumented_internal_fun"
14 define private i8 @uninstrumented_private_fun(i8 %in) {
15   ret i8 %in
18 define i8 @call_uninstrumented_private_fun(i8 %in) {
19   %call = call i8 @uninstrumented_private_fun(i8 %in)
20   ret i8 %call
22 ; CHECK: define private i8 @"dfsw$uninstrumented_private_fun"