diff options
author | Hans Wennborg <hans@hanshq.net> | 2018-05-22 10:14:07 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2018-05-22 10:14:07 +0000 |
commit | 2cfcc01b22f292efc42803d888a12ec356505d6f (patch) | |
tree | c13d767c07ab0a9837c16f40b06fb9d282da5687 | |
parent | 48a7afa5a1d60cd415fce313fc39e0aa739c79b3 (diff) | |
download | bcm5719-llvm-2cfcc01b22f292efc42803d888a12ec356505d6f.tar.gz bcm5719-llvm-2cfcc01b22f292efc42803d888a12ec356505d6f.zip |
LangRef.rst: the "\01" prefix applies not just to variables
llvm-svn: 332967
-rw-r--r-- | llvm/docs/LangRef.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst index 455dd424b9d..702df7a52dc 100644 --- a/llvm/docs/LangRef.rst +++ b/llvm/docs/LangRef.rst @@ -80,7 +80,7 @@ identifiers, for different purposes: characters may be escaped using ``"\xx"`` where ``xx`` is the ASCII code for the character in hexadecimal. In this way, any character can be used in a name value, even quotes themselves. The ``"\01"`` prefix - can be used on global variables to suppress mangling. + can be used on global values to suppress mangling. #. Unnamed values are represented as an unsigned numeric value with their prefix. For example, ``%12``, ``@2``, ``%44``. #. Constants, which are described in the section Constants_ below. |