Home
last modified time | relevance | path

Searched refs:UninstrumentedDuplicate (Results 1 – 1 of 1) sorted by relevance

/freebsd-9-stable/contrib/llvm/lib/Transforms/Instrumentation/
DAddressSanitizer.cpp1266 Function *UninstrumentedDuplicate = 0; in runOnFunction() local
1271 UninstrumentedDuplicate = CloneFunction(&F, VMap, false); in runOnFunction()
1272 UninstrumentedDuplicate->removeFnAttr(Attribute::SanitizeAddress); in runOnFunction()
1273 UninstrumentedDuplicate->setName("NOASAN_" + F.getName()); in runOnFunction()
1274 F.getParent()->getFunctionList().push_back(UninstrumentedDuplicate); in runOnFunction()
1312 if (UninstrumentedDuplicate) in runOnFunction()
1313 UninstrumentedDuplicate->eraseFromParent(); in runOnFunction()
1316 assert(UninstrumentedDuplicate); in runOnFunction()
1317 UninstrumentedDuplicate->setSection("NOASAN"); in runOnFunction()