We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f597ce0 commit 969abfeCopy full SHA for 969abfe
compiler-rt/lib/orc/elfnix_platform.cpp
@@ -45,18 +45,6 @@ __unw_remove_dynamic_eh_frame_section(const void *) ORC_RT_WEAK_IMPORT;
45
46
namespace {
47
48
-Error validatePointerSectionExtent(const char *SectionName,
49
- const ExecutorAddrRange &SE) {
50
- if (SE.size() % sizeof(uintptr_t)) {
51
- std::ostringstream ErrMsg;
52
- ErrMsg << std::hex << "Size of " << SectionName << " 0x"
53
- << SE.Start.getValue() << " -- 0x" << SE.End.getValue()
54
- << " is not a pointer multiple";
55
- return make_error<StringError>(ErrMsg.str());
56
- }
57
- return Error::success();
58
-}
59
-
60
struct TLSInfoEntry {
61
unsigned long Key = 0;
62
unsigned long DataAddress = 0;
0 commit comments