diff options
author | Pierre-Eric Pelloux-Prayer <pierre-eric@lanedo.com> | 2012-07-09 12:12:14 +0200 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2012-07-10 16:23:35 +0100 |
commit | 34f8b2b78ec7f7397e6ca9c69b6a77a9c6aa58a3 (patch) | |
tree | f6b645199ed755246f4a3553b44ef0d0f8328777 /sal/osl | |
parent | eb1192ec1fea481548b5a40f980f59b670232150 (diff) |
single cpu detection: remove 'defined(__SUNPRO_C)' requirement
Change-Id: Iab3d103688d07ceea05b257ac012a0292c837a85
Diffstat (limited to 'sal/osl')
-rw-r--r-- | sal/osl/unx/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/osl/unx/util.c b/sal/osl/unx/util.c index d40257542503..fd69c0dab8db 100644 --- a/sal/osl/unx/util.c +++ b/sal/osl/unx/util.c @@ -317,7 +317,7 @@ void osl_InitSparcV9(void) #endif #if ( defined(__GNUC__) && (defined(X86) || defined(X86_64)) )\ - || ( defined(SOLARIS) && defined (__SUNPRO_C) && defined(__i386) ) + || ( defined(SOLARIS) && defined(__i386) ) /* Safe default */ int osl_isSingleCPU = 0; |