Skip to content

Commit cbe50dd

Browse files
feat: format files
1 parent dd637d3 commit cbe50dd

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

clang/include/clang/Basic/BuiltinsX86.td

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,8 @@ let Attributes = [Const, NoThrow, RequiredVectorWidth<128>] in {
121121
}
122122

123123
// AVX
124-
let Attributes = [Const, NoThrow, RequiredVectorWidth<256>], Features = "avx" in {
124+
let Attributes = [Const, NoThrow, RequiredVectorWidth<256>],
125+
Features = "avx" in {
125126
foreach Op = ["max", "min"] in {
126127
def Op#pd256 : X86Builtin<"_Vector<4, double>(_Vector<4, double>, _Vector<4, double>)">;
127128
def Op#ps256 : X86Builtin<"_Vector<8, float>(_Vector<8, float>, _Vector<8, float>)">;
@@ -573,8 +574,11 @@ let Features = "avx",
573574

574575
let Features = "avx",
575576
Attributes = [NoThrow, Const, Constexpr, RequiredVectorWidth<256>] in {
576-
def addsubpd256 : X86Builtin<"_Vector<4, double>(_Vector<4, double>, _Vector<4, double>)">;
577-
def addsubps256 : X86Builtin<"_Vector<8, float>(_Vector<8, float>, _Vector<8, float>)">;
577+
def addsubpd256
578+
: X86Builtin<
579+
"_Vector<4, double>(_Vector<4, double>, _Vector<4, double>)">;
580+
def addsubps256
581+
: X86Builtin<"_Vector<8, float>(_Vector<8, float>, _Vector<8, float>)">;
578582
}
579583

580584
let Features = "avx", Attributes = [NoThrow] in {

0 commit comments

Comments
 (0)