File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
tools/swift-reflection-fuzzer Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 2828#include " llvm/Object/ELFObjectFile.h"
2929#include " llvm/Object/MachOUniversal.h"
3030#include " llvm/Support/CommandLine.h"
31- #include < cstdio>
3231#include < cstddef>
3332#include < cstdint>
33+ #include < cstdio>
3434
3535#if defined(__APPLE__) && defined(__MACH__)
3636#include < TargetConditionals.h>
@@ -77,7 +77,8 @@ class ObjectMemoryReader : public MemoryReader {
7777 case DLQ_GetPtrAuthMask: {
7878 auto result = static_cast <uintptr_t *>(outBuffer);
7979#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 ));
8182#else
8283 *result = ~uintptr_t (0 );
8384#endif
You can’t perform that action at this time.
0 commit comments