comment fixes here and there
git-svn-id: svn+ssh://svn.code.sf.net/p/mingw-w64/code/trunk@2913 4407c894-4637-0410-b4f5-ada5f102cad1
diff --git a/mingw-w64-crt/ChangeLog b/mingw-w64-crt/ChangeLog
index 83460e8..93a510c 100644
--- a/mingw-w64-crt/ChangeLog
+++ b/mingw-w64-crt/ChangeLog
@@ -1,7 +1,7 @@
2010-07-20 Ozkan Sezer <sezeroz@gmail.com>
* crt/gs_support.c (_ReturnAddress, _AddressOfReturnAddress): wrap
- m$vc intrinsics onto gcc builtins.
+ msvc intrinsics onto gcc builtins.
(__report_gsfailure): Use _ReturnAddress and _AddressOfReturnAddress.
Tidy up the win64 ifdefs at the function start.
@@ -16,9 +16,9 @@
2010-07-20 Ozkan Sezer <sezeroz@gmail.com>
* include/sect_attribs.h: Moved the _MSC_VER ifdef up to cover the
- _ATTRIBUTES macro which is only for the M$ section pragmas. Changed
+ _ATTRIBUTES macro which is only for the MS section pragmas. Changed
the __x86_64__ and __ia64__ ifdefs to _M_IA64 and _M_AMD64, because
- it serves only the M$ compiler.
+ it serves only the MS compiler.
2010-07-20 Ozkan Sezer <sezeroz@gmail.com>
diff --git a/mingw-w64-crt/crt/gs_support.c b/mingw-w64-crt/crt/gs_support.c
index 3338c3d..3393591 100644
--- a/mingw-w64-crt/crt/gs_support.c
+++ b/mingw-w64-crt/crt/gs_support.c
@@ -88,7 +88,7 @@
}
-#if defined(__GNUC__) /* wrap m$vc intrinsics onto gcc builtins */
+#if defined(__GNUC__) /* wrap msvc intrinsics onto gcc builtins */
#undef _ReturnAddress
#undef _AddressOfReturnAddress
#define _ReturnAddress() __builtin_return_address(0)