Mercurial > hg > CbC > CbC_llvm
view llvm/test/Instrumentation/DataFlowSanitizer/uninstrumented_local_functions.ll @ 201:a96fbbdf2d0f
...
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Fri, 04 Jun 2021 21:07:06 +0900 |
parents | 1d019706d866 |
children | 2e18cbf3894f |
line wrap: on
line source
; RUN: opt < %s -dfsan -dfsan-args-abi -dfsan-abilist=%S/Inputs/abilist.txt -S | FileCheck %s ; RUN: opt < %s -dfsan -dfsan-abilist=%S/Inputs/abilist.txt -S | FileCheck %s target triple = "x86_64-unknown-linux-gnu" define internal i8 @uninstrumented_internal_fun(i8 %in) { ret i8 %in } define i8 @call_uninstrumented_internal_fun(i8 %in) { %call = call i8 @uninstrumented_internal_fun(i8 %in) ret i8 %call } ; CHECK: define internal {{(i8|{ i8, i16 })}} @"dfsw$uninstrumented_internal_fun" define private i8 @uninstrumented_private_fun(i8 %in) { ret i8 %in } define i8 @call_uninstrumented_private_fun(i8 %in) { %call = call i8 @uninstrumented_private_fun(i8 %in) ret i8 %call } ; CHECK: define private {{(i8|{ i8, i16 })}} @"dfsw$uninstrumented_private_fun"