mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-19 06:31:18 +00:00
Partially roll back r202915.
I did not intend to cast a pointer to ulittle32_t there because the return type is const void*. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202916 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e553a3ba42
commit
da96b2e19f
@ -108,8 +108,7 @@ struct UnwindInfo {
|
||||
|
||||
/// \brief Return pointer to language specific data part of UnwindInfo.
|
||||
const void *getLanguageSpecificData() const {
|
||||
return reinterpret_cast<const support::ulittle32_t *>(
|
||||
&UnwindCodes[(NumCodes + 1) & ~1]);
|
||||
return reinterpret_cast<const void *>(&UnwindCodes[(NumCodes + 1) & ~1]);
|
||||
}
|
||||
|
||||
/// \brief Return image-relative offset of language-specific exception handler.
|
||||
|
Loading…
x
Reference in New Issue
Block a user