mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-21 23:17:16 +00:00
eliminate residual cruft related to recognizing bytecode
files. bitcode files are the only LLVM format left. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37945 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -306,13 +306,6 @@ namespace sys {
|
||||
/// @brief Determine if the path references an archive file.
|
||||
bool isArchive() const;
|
||||
|
||||
/// This function determines if the path name in the object references an
|
||||
/// LLVM Bytecode file by looking at its magic number.
|
||||
/// @returns true if the file starts with the magic number for LLVM
|
||||
/// bytecode files.
|
||||
/// @brief Determine if the path references a bytecode file.
|
||||
bool isBytecodeFile() const;
|
||||
|
||||
/// This function determines if the path name in the object references an
|
||||
/// LLVM Bitcode file by looking at its magic number.
|
||||
/// @returns true if the file starts with the magic number for LLVM
|
||||
@@ -621,9 +614,7 @@ namespace sys {
|
||||
/// This enumeration delineates the kinds of files that LLVM knows about.
|
||||
enum LLVMFileType {
|
||||
Unknown_FileType = 0, ///< Unrecognized file
|
||||
Bytecode_FileType, ///< Uncompressed bytecode file
|
||||
Bitcode_FileType, ///< Bitcode file
|
||||
CompressedBytecode_FileType, ///< Compressed bytecode file
|
||||
Archive_FileType, ///< ar style archive file
|
||||
ELF_Relocatable_FileType, ///< ELF Relocatable object file
|
||||
ELF_Executable_FileType, ///< ELF Executable image
|
||||
|
||||
Reference in New Issue
Block a user