File tree 1 file changed +3
-2
lines changed
tools/swift-reflection-fuzzer
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 28
28
#include " llvm/Object/ELFObjectFile.h"
29
29
#include " llvm/Object/MachOUniversal.h"
30
30
#include " llvm/Support/CommandLine.h"
31
- #include < cstdio>
32
31
#include < cstddef>
33
32
#include < cstdint>
33
+ #include < cstdio>
34
34
35
35
#if defined(__APPLE__) && defined(__MACH__)
36
36
#include < TargetConditionals.h>
@@ -77,7 +77,8 @@ class ObjectMemoryReader : public MemoryReader {
77
77
case DLQ_GetPtrAuthMask: {
78
78
auto result = static_cast <uintptr_t *>(outBuffer);
79
79
#if __has_feature(ptrauth_calls)
80
- *result = static_cast <uintptr_t >(ptrauth_strip (static_cast <void *>(0x0007ffffffffffff ), 0 ));
80
+ *result = static_cast <uintptr_t >(
81
+ ptrauth_strip (static_cast <void *>(0x0007ffffffffffff ), 0 ));
81
82
#else
82
83
*result = ~uintptr_t (0 );
83
84
#endif
You can’t perform that action at this time.
0 commit comments