This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Forward-declare LLVM (profdata) methods for usage below | |
// For documentation, see: http://clang.llvm.org/docs/SourceBasedCodeCoverage.html | |
int __llvm_profile_write_file(void); | |
void __llvm_profile_initialize_file(void); | |
void __llvm_profile_set_filename(const char *Name); | |
/** | |
* Generate profraw (profdata) code coverage | |
*/ | |
- (BOOL)beginCodeCoverage:(NSString*)fullFilePath |