OSDN Git Service

Remove @brief commands from doxygen comments, too.
authorAdrian Prantl <aprantl@apple.com>
Tue, 1 May 2018 16:10:38 +0000 (16:10 +0000)
committerAdrian Prantl <aprantl@apple.com>
Tue, 1 May 2018 16:10:38 +0000 (16:10 +0000)
commit0b24b74655b976aaba01b2f726659b8c745a16de
tree12340edb6535f79949eca9edbb788b7076d294dc
parent9acd5ab38bdcb4f7caeb0f1e24afd17b6acf1797
Remove @brief commands from doxygen comments, too.

This is a follow-up to r331272.

We've been running doxygen with the autobrief option for a couple of
years now. This makes the \brief markers into our comments
redundant. Since they are a visual distraction and we don't want to
encourage more \brief markers in new code either, this patch removes
them all.

Patch produced by
  for i in $(git grep -l '\@brief'); do perl -pi -e 's/\@brief //g' $i & done

https://reviews.llvm.org/D46290

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@331275 91177308-0d34-0410-b5e6-96231b3b80d8
87 files changed:
docs/GarbageCollection.rst
include/llvm/ADT/APInt.h
include/llvm/Analysis/DOTGraphTraitsPass.h
include/llvm/Analysis/Lint.h
include/llvm/Analysis/RegionInfo.h
include/llvm/Analysis/RegionIterator.h
include/llvm/Analysis/RegionPass.h
include/llvm/Analysis/RegionPrinter.h
include/llvm/BinaryFormat/COFF.h
include/llvm/BinaryFormat/Magic.h
include/llvm/CodeGen/MachineConstantPool.h
include/llvm/CodeGen/MachineFrameInfo.h
include/llvm/CodeGen/PBQP/Graph.h
include/llvm/CodeGen/PBQPRAConstraint.h
include/llvm/CodeGen/RegAllocPBQP.h
include/llvm/CodeGen/VirtRegMap.h
include/llvm/ExecutionEngine/JITSymbol.h
include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h
include/llvm/ExecutionEngine/Orc/CompileUtils.h
include/llvm/ExecutionEngine/Orc/Core.h
include/llvm/ExecutionEngine/Orc/ExecutionUtils.h
include/llvm/ExecutionEngine/Orc/GlobalMappingLayer.h
include/llvm/ExecutionEngine/Orc/IRCompileLayer.h
include/llvm/ExecutionEngine/Orc/IRTransformLayer.h
include/llvm/ExecutionEngine/Orc/IndirectionUtils.h
include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h
include/llvm/ExecutionEngine/Orc/Legacy.h
include/llvm/ExecutionEngine/Orc/ObjectTransformLayer.h
include/llvm/ExecutionEngine/Orc/OrcABISupport.h
include/llvm/ExecutionEngine/Orc/RPCUtils.h
include/llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h
include/llvm/ExecutionEngine/Orc/RemoteObjectLayer.h
include/llvm/ExecutionEngine/Orc/SymbolStringPool.h
include/llvm/IR/CallingConv.h
include/llvm/IR/Constant.h
include/llvm/IR/ConstantRange.h
include/llvm/IR/Constants.h
include/llvm/IR/DerivedTypes.h
include/llvm/IR/Function.h
include/llvm/IR/GlobalValue.h
include/llvm/IR/InstVisitor.h
include/llvm/IR/InstrTypes.h
include/llvm/IR/Instruction.h
include/llvm/IR/Instructions.h
include/llvm/IR/Module.h
include/llvm/IR/Type.h
include/llvm/IR/ValueSymbolTable.h
include/llvm/Object/Binary.h
include/llvm/Object/Decompressor.h
include/llvm/Object/ELFTypes.h
include/llvm/Object/ObjectFile.h
include/llvm/Object/RelocVisitor.h
include/llvm/Pass.h
include/llvm/Support/DynamicLibrary.h
include/llvm/Support/FileSystem.h
include/llvm/Support/Memory.h
include/llvm/Support/Mutex.h
include/llvm/Support/MutexGuard.h
include/llvm/Support/Path.h
include/llvm/Support/Process.h
include/llvm/Support/Program.h
include/llvm/Support/RWMutex.h
include/llvm/Support/Signals.h
include/llvm/Support/SystemUtils.h
include/llvm/Support/UniqueLock.h
include/llvm/Transforms/Utils/IntegerDivision.h
include/llvm/Transforms/Vectorize.h
lib/BinaryFormat/Magic.cpp
lib/CodeGen/RegAllocPBQP.cpp
lib/ExecutionEngine/Orc/Core.cpp
lib/ExecutionEngine/RuntimeDyld/JITSymbol.cpp
lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h
lib/IR/ConstantFold.cpp
lib/IR/Instructions.cpp
lib/Support/APInt.cpp
lib/Support/Unix/Unix.h
lib/Support/YAMLParser.cpp
lib/Target/AMDGPU/AMDKernelCodeT.h
lib/Transforms/IPO/ExtractGV.cpp
lib/Transforms/InstCombine/InstCombineCasts.cpp
lib/Transforms/InstCombine/InstCombineMulDivRem.cpp
lib/Transforms/Scalar/StructurizeCFG.cpp
lib/Transforms/Utils/IntegerDivision.cpp
tools/bugpoint/ToolRunner.cpp
tools/llvm-objdump/llvm-objdump.cpp
tools/llvm-readobj/llvm-readobj.cpp
utils/KillTheDoctor/KillTheDoctor.cpp