File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ class InstrumentationMap {
84
84
FunctionAddressMap FunctionAddresses;
85
85
FunctionAddressReverseMap FunctionIds;
86
86
87
- friend Expected<InstrumentationMap> loadInstrumentationMap (StringRef);
87
+ LLVM_ABI_FRIEND friend Expected<InstrumentationMap> loadInstrumentationMap (StringRef);
88
88
89
89
public:
90
90
// / Provides a raw accessor to the unordered map of function addresses.
Original file line number Diff line number Diff line change 12
12
#ifndef LLVM_XRAY_TRACE_H
13
13
#define LLVM_XRAY_TRACE_H
14
14
15
- #include " llvm/Support/Compiler.h"
16
15
#include < cstdint>
17
16
#include < vector>
18
17
19
18
#include " llvm/ADT/StringRef.h"
19
+ #include " llvm/Support/Compiler.h"
20
20
#include " llvm/Support/DataExtractor.h"
21
21
#include " llvm/Support/Error.h"
22
22
#include " llvm/XRay/XRayRecord.h"
@@ -51,7 +51,7 @@ class Trace {
51
51
52
52
typedef std::vector<XRayRecord>::const_iterator citerator;
53
53
54
- friend Expected<Trace> loadTrace (const DataExtractor &, bool );
54
+ LLVM_ABI_FRIEND friend Expected<Trace> loadTrace (const DataExtractor &, bool );
55
55
56
56
public:
57
57
using size_type = RecordVector::size_type;
You can’t perform that action at this time.
0 commit comments