Home | History | Annotate | Download | only in Driver

Lines Matching defs:File

5 // This file is distributed under the University of Illinois Open Source
1070 // file and the linker knows to use _main as the entry point. But,
1071 // when compiling with -pg, we need to link with the gcrt1.o file,
2866 llvm::ErrorOr<std::unique_ptr<llvm::MemoryBuffer>> File =
2868 if (File) {
2869 StringRef Data = File.get()->getBuffer();
2893 File = llvm::MemoryBuffer::getFile("/etc/redhat-release");
2894 if (File) {
2895 StringRef Data = File.get()->getBuffer();
2910 File = llvm::MemoryBuffer::getFile("/etc/debian_version");
2911 if (File) {
2912 StringRef Data = File.get()->getBuffer();