diff --git a/ChangeLog b/ChangeLog index 4abab618a9..fcd8be3d9b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Aug 29 10:46:37 2007 Yukihiro Matsumoto + + * include/ruby/defines.h (flush_register_windows): call "ta 0x03" + even on Linux/Sparc. [ruby-dev:31674] + Tue Aug 28 19:16:00 2007 Masaki Suketa * ext/win32ole/win32ole.c (ole_type_progid): progid getted by diff --git a/include/ruby/defines.h b/include/ruby/defines.h index 81f2ef45ed..e9d66120b0 100644 --- a/include/ruby/defines.h +++ b/include/ruby/defines.h @@ -231,10 +231,8 @@ flush_register_windows(void) #endif # if defined(__sparc_v9__) || defined(__sparcv9) || defined(__arch64__) ("flushw") -# elif defined(linux) || defined(__linux__) - ("ta 0x83") -# else /* Solaris, OpenBSD, NetBSD, etc. */ - ("ta 0x03") +# else + ("ta 0x03") # endif /* trap always to flush register windows if we are on a Sparc system */ ; } diff --git a/version.h b/version.h index 58e1110fbe..b6fb7c36a2 100644 --- a/version.h +++ b/version.h @@ -1,7 +1,7 @@ #define RUBY_VERSION "1.9.0" -#define RUBY_RELEASE_DATE "2007-08-28" +#define RUBY_RELEASE_DATE "2007-08-29" #define RUBY_VERSION_CODE 190 -#define RUBY_RELEASE_CODE 20070828 +#define RUBY_RELEASE_CODE 20070829 #define RUBY_PATCHLEVEL 0 #define RUBY_VERSION_MAJOR 1 @@ -9,7 +9,7 @@ #define RUBY_VERSION_TEENY 0 #define RUBY_RELEASE_YEAR 2007 #define RUBY_RELEASE_MONTH 8 -#define RUBY_RELEASE_DAY 28 +#define RUBY_RELEASE_DAY 29 #ifdef RUBY_EXTERN RUBY_EXTERN const char ruby_version[];