diff options
author | Bernd Schmidt <bernds@redhat.com> | 2001-09-28 18:00:35 +0000 |
---|---|---|
committer | Bernd Schmidt <bernds@gcc.gnu.org> | 2001-09-28 18:00:35 +0000 |
commit | 47f339cf8d8fa88fb209221fd010b2db24470df2 (patch) | |
tree | ed3a0fd403af3666e62d6260eb780d02efdfc593 /gcc/c-common.c | |
parent | ad91981212e1f9cf0c9b57a93f85e0a5cf1e096b (diff) | |
download | gcc-47f339cf8d8fa88fb209221fd010b2db24470df2.zip gcc-47f339cf8d8fa88fb209221fd010b2db24470df2.tar.gz gcc-47f339cf8d8fa88fb209221fd010b2db24470df2.tar.bz2 |
Add support for 3Dnow builtins
From-SVN: r45863
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r-- | gcc/c-common.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c index 74a5552..190c338 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -1347,6 +1347,8 @@ type_for_mode (mode, unsignedp) return V4HI_type_node; if (mode == TYPE_MODE (V8QI_type_node) && VECTOR_MODE_SUPPORTED_P (mode)) return V8QI_type_node; + if (mode == TYPE_MODE (V2SF_type_node) && VECTOR_MODE_SUPPORTED_P (mode)) + return V2SF_type_node; #endif return 0; |