diff options
Diffstat (limited to 'include/llvm/CodeGen/MachineFrameInfo.h')
-rw-r--r-- | include/llvm/CodeGen/MachineFrameInfo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/MachineFrameInfo.h b/include/llvm/CodeGen/MachineFrameInfo.h index e8cddad86f..4c981f7caf 100644 --- a/include/llvm/CodeGen/MachineFrameInfo.h +++ b/include/llvm/CodeGen/MachineFrameInfo.h @@ -119,7 +119,7 @@ class MachineFrameInfo { bool HasVarSizedObjects; /// FrameAddressTaken - This boolean keeps track of whether there is a call - /// to builtin @llvm.frameaddress. + /// to builtin \@llvm.frameaddress. bool FrameAddressTaken; /// StackSize - The prolog/epilog code inserter calculates the final stack @@ -207,7 +207,7 @@ public: /// isFrameAddressTaken - This method may be called any time after instruction /// selection is complete to determine if there is a call to - /// @llvm.frameaddress in this function. + /// \@llvm.frameaddress in this function. bool isFrameAddressTaken() const { return FrameAddressTaken; } void setFrameAddressIsTaken(bool T) { FrameAddressTaken = T; } |