[llvm-commits] [llvm] r165827 - /llvm/trunk/include/llvm/Support/Memory.h

Andrew Kaylor andrew.kaylor at intel.com
Fri Oct 12 14:47:49 PDT 2012


Author: akaylor
Date: Fri Oct 12 16:47:49 2012
New Revision: 165827

URL: http://llvm.org/viewvc/llvm-project?rev=165827&view=rev
Log:
Correcting enum values mentioned in comments.
Patch by Ashok Thirumurthi.

Modified:
    llvm/trunk/include/llvm/Support/Memory.h

Modified: llvm/trunk/include/llvm/Support/Memory.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/Memory.h?rev=165827&r1=165826&r2=165827&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/Memory.h (original)
+++ llvm/trunk/include/llvm/Support/Memory.h Fri Oct 12 16:47:49 2012
@@ -98,8 +98,8 @@
     /// \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.





More information about the llvm-commits mailing list