forked from OSchip/llvm-project
[X86] Remove a builtin that should have been removed in r332882.
llvm-svn: 332909
This commit is contained in:
parent
7de496f460
commit
9efb77e25f
|
@ -477,7 +477,6 @@ TARGET_BUILTIN(__builtin_ia32_cmpps, "V4fV4fV4fIc", "nc", "avx")
|
|||
TARGET_BUILTIN(__builtin_ia32_cmpps256, "V8fV8fV8fIc", "nc", "avx")
|
||||
TARGET_BUILTIN(__builtin_ia32_cmpsd, "V2dV2dV2dIc", "nc", "avx")
|
||||
TARGET_BUILTIN(__builtin_ia32_cmpss, "V4fV4fV4fIc", "nc", "avx")
|
||||
TARGET_BUILTIN(__builtin_ia32_cvtdq2ps256, "V8fV8i", "nc", "avx")
|
||||
TARGET_BUILTIN(__builtin_ia32_cvtpd2ps256, "V4fV4d", "nc", "avx")
|
||||
TARGET_BUILTIN(__builtin_ia32_cvtps2dq256, "V8iV8f", "nc", "avx")
|
||||
TARGET_BUILTIN(__builtin_ia32_cvttpd2dq256, "V4iV4d", "nc", "avx")
|
||||
|
|
|
@ -433,7 +433,6 @@ void f0() {
|
|||
tmp_V8f = __builtin_ia32_dpps256(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_V8f = __builtin_ia32_cvtdq2ps256(tmp_V8i);
|
||||
tmp_V4f = __builtin_ia32_cvtpd2ps256(tmp_V4d);
|
||||
tmp_V8i = __builtin_ia32_cvtps2dq256(tmp_V8f);
|
||||
tmp_V4i = __builtin_ia32_cvttpd2dq256(tmp_V4d);
|
||||
|
|
Loading…
Reference in New Issue