diff options
Diffstat (limited to 'usr/src/tools/cw/cw.c')
-rw-r--r-- | usr/src/tools/cw/cw.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/usr/src/tools/cw/cw.c b/usr/src/tools/cw/cw.c index ded39c12ff..3bc250dc0c 100644 --- a/usr/src/tools/cw/cw.c +++ b/usr/src/tools/cw/cw.c @@ -20,6 +20,9 @@ */ /* + * Copyright 2011, Richard Lowe. + */ +/* * Copyright 2010 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -33,7 +36,7 @@ */ /* If you modify this file, you must increment CW_VERSION */ -#define CW_VERSION "1.29" +#define CW_VERSION "1.30" /* * -# Verbose mode @@ -392,6 +395,8 @@ static const xarch_table_t xtbl[] = { { "amd64", (SS11|M64), { "-m64", "-mtune=opteron" } }, { "386", SS11, { "-march=i386" } }, { "pentium_pro", SS11, { "-march=pentiumpro" } }, + { "sse", SS11, { "-msse", "-mfpmath=sse" } }, + { "sse2", SS11, { "-msse2", "-mfpmath=sse" } }, #elif defined(__sparc) { "generic", (SS11|M32), { "-m32", "-mcpu=v8" } }, { "generic64", (SS11|M64), { "-m64", "-mcpu=v9" } }, |