From: Craig Topper Date: Tue, 3 Nov 2015 07:20:07 +0000 (+0000) Subject: [X86] Rounding mode for roundps/pd/ss/sd builtins should be an ICE. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bf991262b8e75ec2ce52ca581c1a6178aa7957fe;p=clang [X86] Rounding mode for roundps/pd/ss/sd builtins should be an ICE. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@251902 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Basic/BuiltinsX86.def b/include/clang/Basic/BuiltinsX86.def index c77b2ba4d7..2c7c394978 100644 --- a/include/clang/Basic/BuiltinsX86.def +++ b/include/clang/Basic/BuiltinsX86.def @@ -384,10 +384,10 @@ TARGET_BUILTIN(__builtin_ia32_pmovzxwd128, "V4iV8s", "", "sse4.1") TARGET_BUILTIN(__builtin_ia32_pmovzxwq128, "V2LLiV8s", "", "sse4.1") TARGET_BUILTIN(__builtin_ia32_pmuldq128, "V2LLiV4iV4i", "", "sse4.1") TARGET_BUILTIN(__builtin_ia32_pmulld128, "V4iV4iV4i", "", "sse4.1") -TARGET_BUILTIN(__builtin_ia32_roundps, "V4fV4fi", "", "sse4.1") -TARGET_BUILTIN(__builtin_ia32_roundss, "V4fV4fV4fi", "", "sse4.1") -TARGET_BUILTIN(__builtin_ia32_roundsd, "V2dV2dV2di", "", "sse4.1") -TARGET_BUILTIN(__builtin_ia32_roundpd, "V2dV2di", "", "sse4.1") +TARGET_BUILTIN(__builtin_ia32_roundps, "V4fV4fIi", "", "sse4.1") +TARGET_BUILTIN(__builtin_ia32_roundss, "V4fV4fV4fIi", "", "sse4.1") +TARGET_BUILTIN(__builtin_ia32_roundsd, "V2dV2dV2dIi", "", "sse4.1") +TARGET_BUILTIN(__builtin_ia32_roundpd, "V2dV2dIi", "", "sse4.1") TARGET_BUILTIN(__builtin_ia32_dpps, "V4fV4fV4fIc", "", "sse4.1") TARGET_BUILTIN(__builtin_ia32_dppd, "V2dV2dV2dIc", "", "sse4.1") TARGET_BUILTIN(__builtin_ia32_movntdqa, "V2LLiV2LLiC*", "", "sse4.1")