diff options
author | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2010-08-11 01:17:34 +0000 |
---|---|---|
committer | Bruno Cardoso Lopes <bruno.cardoso@gmail.com> | 2010-08-11 01:17:34 +0000 |
commit | e712a135b71839cc8f457850c87d65ddeef6689d (patch) | |
tree | 65068ebf6cd5a022e9aeb78ae55c1602dd79bf2e /clang/test/CodeGen | |
parent | 79937dfc5b79f1337c36a178bdb38f7d06311983 (diff) | |
download | bcm5719-llvm-e712a135b71839cc8f457850c87d65ddeef6689d.tar.gz bcm5719-llvm-e712a135b71839cc8f457850c87d65ddeef6689d.zip |
Remove 256-bit shuffle built-ins and make the AVX intrinsic call llvm __builtin_shufflevector with the appropriate arguments
llvm-svn: 110766
Diffstat (limited to 'clang/test/CodeGen')
-rw-r--r-- | clang/test/CodeGen/builtins-x86.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/clang/test/CodeGen/builtins-x86.c b/clang/test/CodeGen/builtins-x86.c index 3be7a39ecdd..0e0a253755b 100644 --- a/clang/test/CodeGen/builtins-x86.c +++ b/clang/test/CodeGen/builtins-x86.c @@ -409,8 +409,6 @@ void f0() { tmp_V4d = __builtin_ia32_blendvpd256(tmp_V4d, tmp_V4d, tmp_V4d); tmp_V8f = __builtin_ia32_blendvps256(tmp_V8f, tmp_V8f, tmp_V8f); tmp_V8f = __builtin_ia32_dpps256(tmp_V8f, tmp_V8f, 0x7); - tmp_V4d = __builtin_ia32_shufpd256(tmp_V4d, tmp_V4d, 0x7); - tmp_V8f = __builtin_ia32_shufps256(tmp_V8f, tmp_V8f, 0x7); tmp_V4d = __builtin_ia32_cmppd256(tmp_V4d, tmp_V4d, 0); tmp_V8f = __builtin_ia32_cmpps256(tmp_V8f, tmp_V8f, 0); tmp_V2d = __builtin_ia32_vextractf128_pd256(tmp_V4d, 0x7); |