File tree 6 files changed +6
-6
lines changed 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -1499,7 +1499,7 @@ class APFloat : public APFloatBase {
1499
1499
}
1500
1500
1501
1501
LLVM_ABI void print (raw_ostream &) const ;
1502
- LLVM_ABI void dump () const ;
1502
+ void dump () const ;
1503
1503
1504
1504
bool getExactInverse (APFloat *inv) const {
1505
1505
APFLOAT_DISPATCH_ON_SEMANTICS (getExactInverse (inv));
Original file line number Diff line number Diff line change @@ -1905,7 +1905,7 @@ class [[nodiscard]] APInt {
1905
1905
LLVM_ABI void Profile (FoldingSetNodeID &id) const ;
1906
1906
1907
1907
// / debug method
1908
- LLVM_ABI void dump () const ;
1908
+ void dump () const ;
1909
1909
1910
1910
// / Returns whether this instance allocated memory.
1911
1911
bool needsCleanup () const { return !isSingleWord (); }
Original file line number Diff line number Diff line change @@ -217,7 +217,7 @@ class DynamicAPInt {
217
217
LLVM_ABI void static_assert_layout (); // NOLINT
218
218
219
219
LLVM_ABI raw_ostream &print (raw_ostream &OS) const ;
220
- LLVM_ABI LLVM_DUMP_METHOD void dump () const ;
220
+ LLVM_DUMP_METHOD void dump () const ;
221
221
};
222
222
223
223
inline raw_ostream &operator <<(raw_ostream &OS, const DynamicAPInt &X) {
Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ class SlowDynamicAPInt {
81
81
unsigned getBitWidth () const { return Val.getBitWidth (); }
82
82
83
83
LLVM_ABI void print (raw_ostream &OS) const ;
84
- LLVM_ABI LLVM_DUMP_METHOD void dump () const ;
84
+ LLVM_DUMP_METHOD void dump () const ;
85
85
};
86
86
87
87
inline raw_ostream &operator <<(raw_ostream &OS, const SlowDynamicAPInt &X) {
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ class ThreadSafeTrieRawHashMapBase {
91
91
static void *operator new (size_t Size ) { return ::operator new (Size ); }
92
92
void operator delete (void *Ptr ) { ::operator delete (Ptr ); }
93
93
94
- LLVM_ABI LLVM_DUMP_METHOD void dump () const ;
94
+ LLVM_DUMP_METHOD void dump () const ;
95
95
LLVM_ABI void print (raw_ostream &OS) const ;
96
96
97
97
protected:
Original file line number Diff line number Diff line change @@ -510,7 +510,7 @@ namespace llvm {
510
510
LLVM_ABI void print (raw_ostream &OS) const ;
511
511
512
512
// / Dump the concatenated string represented by this twine to stderr.
513
- LLVM_ABI void dump () const ;
513
+ void dump () const ;
514
514
515
515
// / Write the representation of this twine to the stream \p OS.
516
516
LLVM_ABI void printRepr (raw_ostream &OS) const ;
You can’t perform that action at this time.
0 commit comments