diff options
author | Reid Kleckner <reid@kleckner.net> | 2014-05-27 21:35:17 +0000 |
---|---|---|
committer | Reid Kleckner <reid@kleckner.net> | 2014-05-27 21:35:17 +0000 |
commit | bffbcc596fd3c5866b54aead39bd88e8ddc804f9 (patch) | |
tree | 5944107566986f1499e74116ea76dcaf32508129 /llvm/docs | |
parent | 83a4e18f4c59bfec7d925df6f6f7e627b6d14d40 (diff) | |
download | bcm5719-llvm-bffbcc596fd3c5866b54aead39bd88e8ddc804f9.tar.gz bcm5719-llvm-bffbcc596fd3c5866b54aead39bd88e8ddc804f9.zip |
Wording fix for llvm.global_dtors docs.
llvm-svn: 209687
Diffstat (limited to 'llvm/docs')
-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 6473bb9ff27..fa40363a754 100644 --- a/llvm/docs/LangRef.rst +++ b/llvm/docs/LangRef.rst @@ -3201,7 +3201,7 @@ The '``llvm.global_dtors``' Global Variable The ``@llvm.global_dtors`` array contains a list of destructor functions, priorities, and an optional associated global or function. The functions referenced by this array will be called in descending -order of priority (i.e. highest first) when the module is loaded. The +order of priority (i.e. highest first) when the module is unloaded. The order of functions with the same priority is not defined. If the third field is present, non-null, and points to a global variable |