diff options
author | Dan Gohman <gohman@apple.com> | 2009-03-03 02:55:14 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-03-03 02:55:14 +0000 |
commit | 0f8b53f19d29013ab18f3d444cea1e6305405611 (patch) | |
tree | d6604c4df67bec3936ed3c7a3b92a312f42ea7a8 /include | |
parent | acb51a3037dcdb5fe074e429f83c4da25aa68e83 (diff) | |
download | external_llvm-0f8b53f19d29013ab18f3d444cea1e6305405611.zip external_llvm-0f8b53f19d29013ab18f3d444cea1e6305405611.tar.gz external_llvm-0f8b53f19d29013ab18f3d444cea1e6305405611.tar.bz2 |
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')
-rw-r--r-- | include/llvm/CodeGen/MachineConstantPool.h | 3 | ||||
-rw-r--r-- | include/llvm/CodeGen/MachineFrameInfo.h | 4 | ||||
-rw-r--r-- | include/llvm/CodeGen/RegisterCoalescer.h | 2 | ||||
-rw-r--r-- | include/llvm/CodeGen/SelectionDAGNodes.h | 2 | ||||
-rw-r--r-- | include/llvm/Constants.h | 3 | ||||
-rw-r--r-- | include/llvm/Module.h | 3 | ||||
-rw-r--r-- | include/llvm/System/IncludeFile.h | 3 | ||||
-rw-r--r-- | include/llvm/Target/TargetLowering.h | 6 |
8 files changed, 15 insertions, 11 deletions
diff --git a/include/llvm/CodeGen/MachineConstantPool.h b/include/llvm/CodeGen/MachineConstantPool.h index cfa192a..d042258 100644 --- a/include/llvm/CodeGen/MachineConstantPool.h +++ b/include/llvm/CodeGen/MachineConstantPool.h @@ -7,7 +7,8 @@ // //===----------------------------------------------------------------------===// // -/// @file This file declares the MachineConstantPool class which is an abstract +/// @file +/// This file declares the MachineConstantPool class which is an abstract /// constant pool to keep track of constants referenced by a function. // //===----------------------------------------------------------------------===// diff --git a/include/llvm/CodeGen/MachineFrameInfo.h b/include/llvm/CodeGen/MachineFrameInfo.h index e8cddad..4c981f7 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; } diff --git a/include/llvm/CodeGen/RegisterCoalescer.h b/include/llvm/CodeGen/RegisterCoalescer.h index b2e09b5..79dd9db 100644 --- a/include/llvm/CodeGen/RegisterCoalescer.h +++ b/include/llvm/CodeGen/RegisterCoalescer.h @@ -64,7 +64,7 @@ namespace llvm { /// /// class LinearScanRegallocQuery : public RegallocQuery { /// private: - /// const LiveIntervals &li; + /// const LiveIntervals \&li; /// /// public: /// LinearScanRegallocQuery(LiveIntervals &intervals) diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h index e945b98..e95ce39 100644 --- a/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/include/llvm/CodeGen/SelectionDAGNodes.h @@ -1125,7 +1125,7 @@ public: unsigned getOpcode() const { return (unsigned short)NodeType; } /// isTargetOpcode - Test if this node has a target-specific opcode (in the - /// <target>ISD namespace). + /// \<target\>ISD namespace). bool isTargetOpcode() const { return NodeType >= ISD::BUILTIN_OP_END; } /// isMachineOpcode - Test if this node has a post-isel opcode, directly diff --git a/include/llvm/Constants.h b/include/llvm/Constants.h index 0088d68..f25d010 100644 --- a/include/llvm/Constants.h +++ b/include/llvm/Constants.h @@ -7,7 +7,8 @@ // //===----------------------------------------------------------------------===// // -/// @file This file contains the declarations for the subclasses of Constant, +/// @file +/// This file contains the declarations for the subclasses of Constant, /// which represent the different flavors of constant values that live in LLVM. /// Note that Constants are immutable (once created they never change) and are /// fully shared by structural equivalence. This means that two structurally diff --git a/include/llvm/Module.h b/include/llvm/Module.h index aa2c449..2bbf01a 100644 --- a/include/llvm/Module.h +++ b/include/llvm/Module.h @@ -7,7 +7,8 @@ // //===----------------------------------------------------------------------===// // -/// @file This file contains the declarations for the Module class. +/// @file +/// Module.h This file contains the declarations for the Module class. // //===----------------------------------------------------------------------===// diff --git a/include/llvm/System/IncludeFile.h b/include/llvm/System/IncludeFile.h index 6103e44..3268ea2 100644 --- a/include/llvm/System/IncludeFile.h +++ b/include/llvm/System/IncludeFile.h @@ -64,7 +64,8 @@ namespace llvm { /// helps to resolve that problem. The basic strategy is to use this class in /// a header file and pass the address of a variable to the constructor. If the /// variable is defined in the header file's corresponding .cpp file then all -/// tools/libraries that #include the header file will require the .cpp as well. +/// tools/libraries that \#include the header file will require the .cpp as +/// well. /// For example:<br/> /// <tt>extern int LinkMyCodeStub;</tt><br/> /// <tt>static IncludeFile LinkMyModule(&LinkMyCodeStub);</tt><br/> diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h index 8ec7f7a..d0721d3 100644 --- a/include/llvm/Target/TargetLowering.h +++ b/include/llvm/Target/TargetLowering.h @@ -1597,7 +1597,7 @@ private: ISD::CondCode CmpLibcallCCs[RTLIB::UNKNOWN_LIBCALL]; protected: - /// When lowering @llvm.memset this field specifies the maximum number of + /// When lowering \@llvm.memset this field specifies the maximum number of /// store operations that may be substituted for the call to memset. Targets /// must set this value based on the cost threshold for that target. Targets /// should assume that the memset will be done using as many of the largest @@ -1608,7 +1608,7 @@ protected: /// @brief Specify maximum number of store instructions per memset call. unsigned maxStoresPerMemset; - /// When lowering @llvm.memcpy this field specifies the maximum number of + /// When lowering \@llvm.memcpy this field specifies the maximum number of /// store operations that may be substituted for a call to memcpy. Targets /// must set this value based on the cost threshold for that target. Targets /// should assume that the memcpy will be done using as many of the largest @@ -1620,7 +1620,7 @@ protected: /// @brief Specify maximum bytes of store instructions per memcpy call. unsigned maxStoresPerMemcpy; - /// When lowering @llvm.memmove this field specifies the maximum number of + /// When lowering \@llvm.memmove this field specifies the maximum number of /// store instructions that may be substituted for a call to memmove. Targets /// must set this value based on the cost threshold for that target. Targets /// should assume that the memmove will be done using as many of the largest |