Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DModule.h242 void setIsNewDbgInfoFormat(bool UseNewFormat) { in setIsNewDbgInfoFormat() argument
243 if (UseNewFormat && !IsNewDbgInfoFormat) in setIsNewDbgInfoFormat()
245 else if (!UseNewFormat && IsNewDbgInfoFormat) in setIsNewDbgInfoFormat()
/freebsd/contrib/llvm-project/llvm/include/llvm-c/
H A DCore.h794 void LLVMSetIsNewDbgInfoFormat(LLVMModuleRef M, LLVMBool UseNewFormat);
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DCore.cpp431 void LLVMSetIsNewDbgInfoFormat(LLVMModuleRef M, LLVMBool UseNewFormat) { in LLVMSetIsNewDbgInfoFormat() argument
432 unwrap(M)->setIsNewDbgInfoFormat(UseNewFormat); in LLVMSetIsNewDbgInfoFormat()