From 66a3b9049bccbc09b8a578b07e2cad6cf131c32e Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Sun, 8 Jun 2014 23:25:02 +0000 Subject: [PATCH] Escape "@function" with \verbatim. [-Wdocumentation] git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@210443 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/JumpInstrTables.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/llvm/CodeGen/JumpInstrTables.h b/include/llvm/CodeGen/JumpInstrTables.h index 22aee48b680..6ca3d7d1765 100644 --- a/include/llvm/CodeGen/JumpInstrTables.h +++ b/include/llvm/CodeGen/JumpInstrTables.h @@ -31,11 +31,13 @@ class Module; /// JumpInstrTableInfo. /// /// These special functions get lowered in AsmPrinter to assembly of the form: +/// \verbatim /// .globl f /// .type f,@function /// .align 8,0x90 /// f: /// jmp f_orig@PLT +/// \endverbatim /// /// Support for an architecture depends on two functions in TargetInstrInfo: /// getUnconditionalBranch, and getTrap. AsmPrinter uses these to generate the