HomeSort by: relevance | last modified time | path
    Searched defs:unatexit (Results 1 - 1 of 1) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGDeclCXX.cpp 296 // The unatexit subroutine unregisters __dtor functions that were previously
299 // termination and the unatexit returns a value of 0, otherwise a non-zero
302 // extern "C" int unatexit(void (*f)(void));
307 "Argument to unatexit has a wrong type.");
312 llvm::FunctionCallee unatexit = local
313 CGM.CreateRuntimeFunction(unatexitTy, "unatexit", llvm::AttributeList());
315 cast<llvm::Function>(unatexit.getCallee())->setDoesNotThrow();
317 return EmitNounwindRuntimeCall(unatexit, dtorStub);

Completed in 42 milliseconds