summaryrefslogtreecommitdiff
path: root/include/llvm/Support/Memory.h
diff options
context:
space:
mode:
authorAndrew Kaylor <andrew.kaylor@intel.com>2012-10-12 21:47:49 +0000
committerAndrew Kaylor <andrew.kaylor@intel.com>2012-10-12 21:47:49 +0000
commit652b28dbcac156bb6a3b596bdf29aaf17e89eda5 (patch)
tree8b2000e54064b9c57a554c895ecd2da8123532b6 /include/llvm/Support/Memory.h
parentad5e969ba945c46aef58ae26b77f80cd99c8f3fb (diff)
downloadllvm-652b28dbcac156bb6a3b596bdf29aaf17e89eda5.tar.gz
llvm-652b28dbcac156bb6a3b596bdf29aaf17e89eda5.tar.bz2
llvm-652b28dbcac156bb6a3b596bdf29aaf17e89eda5.tar.xz
Correcting enum values mentioned in comments.
Patch by Ashok Thirumurthi. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165827 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/Memory.h')
-rw-r--r--include/llvm/Support/Memory.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Support/Memory.h b/include/llvm/Support/Memory.h
index 8227c84bff..025eee7f9f 100644
--- a/include/llvm/Support/Memory.h
+++ b/include/llvm/Support/Memory.h
@@ -98,8 +98,8 @@ namespace sys {
/// \p ErrMsg [out] returns a string describing any error that occured.
///
/// If \p Flags is MF_WRITE, the actual behavior varies
- /// with the operating system (i.e. MF_READWRITE on Windows) and the
- /// target architecture (i.e. MF_WRITE -> MF_READWRITE on i386).
+ /// with the operating system (i.e. MF_READ | MF_WRITE on Windows) and the
+ /// target architecture (i.e. MF_WRITE -> MF_READ | MF_WRITE on i386).
///
/// \r error_success if the function was successful, or an error_code
/// describing the failure if an error occurred.