Skip to content

Commit 0faacb6

Browse files
committed
Clang-formatted the files in question, ran Buildifier on .bazel
1 parent 1cc47f3 commit 0faacb6

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

libc/src/__support/math/rsqrtf.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===-- Implementation header for rsqrtf ------------------------*- C++ -*-===//
1+
//===-- Implementation header for rsqrtf ------------------------*- C++ -*-===//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.
@@ -9,11 +9,11 @@
99
#ifndef LLVM_LIBC_SRC___SUPPORT_MATH_RSQRTF_H
1010
#define LLVM_LIBC_SRC___SUPPORT_MATH_RSQRTF_H
1111

12-
#include "hdr/errno_macros.h"
13-
#include "hdr/fenv_macros.h"
14-
#include "src/__support/FPUtil/FEnvImpl.h"
15-
#include "src/__support/FPUtil/FPBits.h"
16-
#include "src/__support/FPUtil/cast.h"
12+
#include "hdr/errno_macros.h"
13+
#include "hdr/fenv_macros.h"
14+
#include "src/__support/FPUtil/FEnvImpl.h"
15+
#include "src/__support/FPUtil/FPBits.h"
16+
#include "src/__support/FPUtil/cast.h"
1717
#include "src/__support/FPUtil/sqrt.h"
1818
#include "src/__support/macros/optimization.h"
1919

libc/test/src/math/smoke/rsqrtf16_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#include "hdr/fenv_macros.h"
10-
#include "hdr/errno_macros.h"
9+
#include "hdr/errno_macros.h"
10+
#include "hdr/fenv_macros.h"
1111
#include "src/__support/FPUtil/cast.h"
1212
#include "src/math/rsqrtf16.h"
1313
#include "test/UnitTest/FPMatcher.h"

libc/test/src/math/smoke/rsqrtf_test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#include "hdr/fenv_macros.h"
10-
#include "hdr/errno_macros.h"
9+
#include "hdr/errno_macros.h"
10+
#include "hdr/fenv_macros.h"
1111
#include "src/math/rsqrtf.h"
1212
#include "test/UnitTest/FPMatcher.h"
1313
#include "test/UnitTest/Test.h"

utils/bazel/llvm-project-overlay/libc/BUILD.bazel

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2300,12 +2300,12 @@ libc_support_library(
23002300
name = "__support_math_rsqrtf",
23012301
hdrs = ["src/__support/math/rsqrtf.h"],
23022302
deps = [
2303-
":hdr_errno_macros",
2304-
":hdr_fenv_macros",
2305-
":__support_fputil_cast",
2306-
":__support_fputil_fenv_impl",
2307-
":__support_fputil_fp_bits",
2308-
":__support_macros_optimization",
2303+
":__support_fputil_cast",
2304+
":__support_fputil_fenv_impl",
2305+
":__support_fputil_fp_bits",
2306+
":__support_macros_optimization",
2307+
":hdr_errno_macros",
2308+
":hdr_fenv_macros",
23092309
],
23102310
)
23112311

0 commit comments

Comments
 (0)