summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/MachineFrameInfo.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-03-03 02:55:14 +0000
committerDan Gohman <gohman@apple.com>2009-03-03 02:55:14 +0000
commit0f8b53f19d29013ab18f3d444cea1e6305405611 (patch)
treed6604c4df67bec3936ed3c7a3b92a312f42ea7a8 /include/llvm/CodeGen/MachineFrameInfo.h
parentacb51a3037dcdb5fe074e429f83c4da25aa68e83 (diff)
downloadllvm-0f8b53f19d29013ab18f3d444cea1e6305405611.tar.gz
llvm-0f8b53f19d29013ab18f3d444cea1e6305405611.tar.bz2
llvm-0f8b53f19d29013ab18f3d444cea1e6305405611.tar.xz
Fix a bunch of Doxygen syntax issues. Escape special characters,
and put @file directives on their own comment line. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65920 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineFrameInfo.h')
-rw-r--r--include/llvm/CodeGen/MachineFrameInfo.h4
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; }