From 268226b9f36a4b6db39cbf1106a91fc799ce95d1 Mon Sep 17 00:00:00 2001 From: Hans Wennborg Date: Wed, 15 Jan 2014 02:49:17 +0000 Subject: [PATCH] LangRef.rst: fix LangRef data layout text about m specifier, take 2 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@199286 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/LangRef.rst | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/docs/LangRef.rst b/docs/LangRef.rst index a9e7326934b..a1b3eb47ecb 100644 --- a/docs/LangRef.rst +++ b/docs/LangRef.rst @@ -1171,14 +1171,15 @@ as follows: ``a::`` This specifies the alignment for an object of aggregate type. ``m:`` - If prerest, specifies that llvm names are mangled in the output. The - options are - * ``e``: ELF mangling: Private symbols get a ``.L`` prefix. - * ``m``: Mips mangling: Private symbols get a ``$`` prefix. - * ``o``: Mach-O mangling: Private symbols get ``L`` prefix. Other - symbols get a ``_`` prefix. - * ``w``: Windows COFF prefix: Similar to Mach-O, but stdcall and fastcall - functions also get a suffix based on the frame size. + If present, specifies that llvm names are mangled in the output. The + options are + + * ``e``: ELF mangling: Private symbols get a ``.L`` prefix. + * ``m``: Mips mangling: Private symbols get a ``$`` prefix. + * ``o``: Mach-O mangling: Private symbols get ``L`` prefix. Other + symbols get a ``_`` prefix. + * ``w``: Windows COFF prefix: Similar to Mach-O, but stdcall and fastcall + functions also get a suffix based on the frame size. ``n::...`` This specifies a set of native integer widths for the target CPU in bits. For example, it might contain ``n32`` for 32-bit PowerPC,