GC unwind_info_size.

This commit is contained in:
joerg 2014-04-28 13:39:23 +00:00
parent 511cd1dbe5
commit 0c55f87954
2 changed files with 0 additions and 2 deletions

View File

@ -41,7 +41,6 @@ struct unw_proc_info_t {
uintptr_t lsda; // Address of Language Specific Data Area
uintptr_t handler; // Personality routine
uintptr_t extra_args; // Extra stack space for frameless routines
uint32_t unwind_info_size; // Size of DWARF unwind info
uintptr_t unwind_info; // Address of DWARF unwind info
};

View File

@ -135,7 +135,6 @@ void UnwindCursor<A, R>::setInfoBasedOnIPRegister(bool isReturnAddress) {
fInfo.handler = cieInfo.personality;
fInfo.extra_args = prolog.spExtraArgSize;
fInfo.unwind_info = fdeInfo.fdeStart;
fInfo.unwind_info_size = fdeInfo.fdeLength;
}
}; // namespace _Unwind