diff options
Diffstat (limited to 'include/llvm/CodeGen/MachineDebugInfoDesc.h')
-rw-r--r-- | include/llvm/CodeGen/MachineDebugInfoDesc.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/llvm/CodeGen/MachineDebugInfoDesc.h b/include/llvm/CodeGen/MachineDebugInfoDesc.h index a79a12170d..50f093d21f 100644 --- a/include/llvm/CodeGen/MachineDebugInfoDesc.h +++ b/include/llvm/CodeGen/MachineDebugInfoDesc.h @@ -7,15 +7,15 @@ // //===----------------------------------------------------------------------===// // -// -// +// Debug descriptor information for a module. +// //===----------------------------------------------------------------------===// #ifndef LLVM_CODEGEN_MACHINEDEBUGINFODESC_H #define LLVM_CODEGEN_MACHINEDEBUGINFODESC_H -#include "llvm/GlobalValue.h" #include "llvm/Support/DataTypes.h" +#include <string> #include <vector> namespace llvm { @@ -67,7 +67,7 @@ public: /// getLinkage - get linkage appropriate for this type of descriptor. /// - virtual GlobalValue::LinkageTypes getLinkage() const; + virtual unsigned getLinkage() const; //===--------------------------------------------------------------------===// // Subclasses should supply the following virtual methods. @@ -111,7 +111,7 @@ public: /// getLinkage - get linkage appropriate for this type of descriptor. /// - virtual GlobalValue::LinkageTypes getLinkage() const; + virtual unsigned getLinkage() const; /// ApplyToFields - Target the visitor to the fields of the AnchorDesc. /// |