File tree Expand file tree Collapse file tree 4 files changed +10
-7
lines changed Expand file tree Collapse file tree 4 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -673,7 +673,8 @@ class IEEEFloat final {
673
673
integerPart addSignificand (const IEEEFloat &);
674
674
integerPart subtractSignificand (const IEEEFloat &, integerPart);
675
675
// Exported for IEEEFloatUnitTestHelper.
676
- LLVM_ABI lostFraction addOrSubtractSignificand (const IEEEFloat &, bool subtract);
676
+ LLVM_ABI lostFraction addOrSubtractSignificand (const IEEEFloat &,
677
+ bool subtract);
677
678
lostFraction multiplySignificand (const IEEEFloat &, IEEEFloat,
678
679
bool ignoreAddend = false );
679
680
lostFraction multiplySignificand (const IEEEFloat&);
Original file line number Diff line number Diff line change 14
14
#ifndef LLVM_SUPPORT_KNOWNFPCLASS_H
15
15
#define LLVM_SUPPORT_KNOWNFPCLASS_H
16
16
17
- #include " llvm/Support/Compiler.h"
18
17
#include " llvm/ADT/FloatingPointMode.h"
18
+ #include " llvm/Support/Compiler.h"
19
19
#include < optional>
20
20
21
21
namespace llvm {
@@ -218,7 +218,8 @@ struct KnownFPClass {
218
218
// /
219
219
// / This assumes a copy-like operation and will replace any currently known
220
220
// / information.
221
- LLVM_ABI void propagateCanonicalizingSrc (const KnownFPClass &Src, DenormalMode Mode);
221
+ LLVM_ABI void propagateCanonicalizingSrc (const KnownFPClass &Src,
222
+ DenormalMode Mode);
222
223
223
224
void resetAll () { *this = KnownFPClass (); }
224
225
};
Original file line number Diff line number Diff line change 9
9
#ifndef LLVM_SUPPORT_PROGRAMSTACK_H
10
10
#define LLVM_SUPPORT_PROGRAMSTACK_H
11
11
12
- #include " llvm/Support/Compiler.h"
13
12
#include " llvm/ADT/STLFunctionalExtras.h"
13
+ #include " llvm/Support/Compiler.h"
14
14
15
15
// LLVM_HAS_SPLIT_STACKS is exposed in the header because CrashRecoveryContext
16
16
// needs to know if it's running on another thread or not.
Original file line number Diff line number Diff line change 15
15
#ifndef LLVM_SUPPORT_TEXT_ENCODING_H
16
16
#define LLVM_SUPPORT_TEXT_ENCODING_H
17
17
18
- #include " llvm/Support/Compiler.h"
19
18
#include " llvm/ADT/SmallString.h"
20
19
#include " llvm/ADT/StringRef.h"
21
20
#include " llvm/Config/config.h"
21
+ #include " llvm/Support/Compiler.h"
22
22
#include " llvm/Support/ErrorOr.h"
23
23
24
24
#include < string>
@@ -94,15 +94,16 @@ class TextEncodingConverter {
94
94
// / \param[in] To the target character encoding
95
95
// / \return a TextEncodingConverter instance or an error code
96
96
LLVM_ABI static ErrorOr<TextEncodingConverter> create (TextEncoding From,
97
- TextEncoding To);
97
+ TextEncoding To);
98
98
99
99
// / Creates a TextEncodingConverter instance.
100
100
// / Returns std::errc::invalid_argument in case the requested conversion is
101
101
// / not supported.
102
102
// / \param[in] From name of the source character encoding
103
103
// / \param[in] To name of the target character encoding
104
104
// / \return a TextEncodingConverter instance or an error code
105
- LLVM_ABI static ErrorOr<TextEncodingConverter> create (StringRef From, StringRef To);
105
+ LLVM_ABI static ErrorOr<TextEncodingConverter> create (StringRef From,
106
+ StringRef To);
106
107
107
108
TextEncodingConverter (const TextEncodingConverter &) = delete ;
108
109
TextEncodingConverter &operator =(const TextEncodingConverter &) = delete ;
You can’t perform that action at this time.
0 commit comments