diff options
author | Dan Gohman <gohman@apple.com> | 2009-01-12 21:35:55 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-01-12 21:35:55 +0000 |
commit | 7956412470b2e1f48c6be6fcd8e2363509358839 (patch) | |
tree | 7cc6008df531bb39ca120a6f6fff2756ce44dbd4 /docs | |
parent | 30e5e55e7aef31cbdb9ce0c49c11ff5825f6d8c1 (diff) | |
download | external_llvm-7956412470b2e1f48c6be6fcd8e2363509358839.zip external_llvm-7956412470b2e1f48c6be6fcd8e2363509358839.tar.gz external_llvm-7956412470b2e1f48c6be6fcd8e2363509358839.tar.bz2 |
The LLVM Assembly Language Reference incorrectly stated that the
prefix used for dll{import,export} is _imp__; it is actually __imp_.
Patch by Mahadevan R!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62103 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/LangRef.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html index 7b8d4f8..8857590 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -552,7 +552,7 @@ All Global Variables and Functions have one of the following types of linkage: <dd>"<tt>dllimport</tt>" linkage causes the compiler to reference a function or variable via a global pointer to a pointer that is set up by the DLL exporting the symbol. On Microsoft Windows targets, the pointer name is - formed by combining <code>_imp__</code> and the function or variable name. + formed by combining <code>__imp_</code> and the function or variable name. </dd> <dt><tt><b><a name="linkage_dllexport">dllexport</a></b></tt>: </dt> @@ -560,7 +560,7 @@ All Global Variables and Functions have one of the following types of linkage: <dd>"<tt>dllexport</tt>" linkage causes the compiler to provide a global pointer to a pointer in a DLL, so that it can be referenced with the <tt>dllimport</tt> attribute. On Microsoft Windows targets, the pointer - name is formed by combining <code>_imp__</code> and the function or variable + name is formed by combining <code>__imp_</code> and the function or variable name. </dd> |