diff options
Diffstat (limited to 'include/llvm/CodeGen/MachineDebugInfo.h')
-rw-r--r-- | include/llvm/CodeGen/MachineDebugInfo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/MachineDebugInfo.h b/include/llvm/CodeGen/MachineDebugInfo.h index aa968f49a8..1676f6b85b 100644 --- a/include/llvm/CodeGen/MachineDebugInfo.h +++ b/include/llvm/CodeGen/MachineDebugInfo.h @@ -985,7 +985,7 @@ private: // FrameMoves - List of moves done by a function's prolog. Used to construct // frame maps by debug consumers. - std::vector<MachineMove *> FrameMoves; + std::vector<MachineMove> FrameMoves; public: MachineDebugInfo(); @@ -1145,7 +1145,7 @@ public: /// getFrameMoves - Returns a reference to a list of moves done in the current /// function's prologue. Used to construct frame maps for debug comsumers. - std::vector<MachineMove *> &getFrameMoves() { return FrameMoves; } + std::vector<MachineMove> &getFrameMoves() { return FrameMoves; } }; // End class MachineDebugInfo |