diff options
author | Lang Hames <lhames@gmail.com> | 2018-10-24 20:37:40 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2018-10-24 20:37:40 +0000 |
commit | a0d18b63141a5231d9f1d2ddd5b46bcd1d0a85d1 (patch) | |
tree | 580e8f0fa199b8013326d7895dbf1723eec92296 | |
parent | 70d771714ec6210df887139b2c1467c5acd79da1 (diff) | |
download | bcm5719-llvm-a0d18b63141a5231d9f1d2ddd5b46bcd1d0a85d1.tar.gz bcm5719-llvm-a0d18b63141a5231d9f1d2ddd5b46bcd1d0a85d1.zip |
[ExecutionEngine] Remove some dead code from JITEventListener.h.
llvm-svn: 345195
-rw-r--r-- | llvm/include/llvm/ExecutionEngine/JITEventListener.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/llvm/include/llvm/ExecutionEngine/JITEventListener.h b/llvm/include/llvm/ExecutionEngine/JITEventListener.h index 1ce772ccde9..589ca612f04 100644 --- a/llvm/include/llvm/ExecutionEngine/JITEventListener.h +++ b/llvm/include/llvm/ExecutionEngine/JITEventListener.h @@ -35,25 +35,6 @@ class ObjectFile; } // end namespace object -/// JITEvent_EmittedFunctionDetails - Helper struct for containing information -/// about a generated machine code function. -struct JITEvent_EmittedFunctionDetails { - struct LineStart { - /// The address at which the current line changes. - uintptr_t Address; - - /// The new location information. These can be translated to DebugLocTuples - /// using MF->getDebugLocTuple(). - DebugLoc Loc; - }; - - /// The machine function the struct contains information for. - const MachineFunction *MF; - - /// The list of line boundary information, sorted by address. - std::vector<LineStart> LineStarts; -}; - /// JITEventListener - Abstract interface for use by the JIT to notify clients /// about significant events during compilation. For example, to notify /// profilers and debuggers that need to know where functions have been emitted. @@ -61,9 +42,6 @@ struct JITEvent_EmittedFunctionDetails { /// The default implementation of each method does nothing. class JITEventListener { public: - using EmittedFunctionDetails = JITEvent_EmittedFunctionDetails; - -public: JITEventListener() = default; virtual ~JITEventListener() = default; |