mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-23 02:32:11 +00:00
Add typenames to see if bot goes green.
I hope this brings http://lab.llvm.org:8011/builders/clang-x86_64-darwin11-self-mingw32 back. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179446 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4e0980af2e
commit
107cd0caa9
@ -604,7 +604,7 @@ bool
|
||||
MachOObjectFileMiddle<E>::isRelocationPCRel(const RelocationEntry *RE) const {
|
||||
typedef MachOObjectFileMiddle<E> ObjType;
|
||||
if (isRelocationScattered(RE)) {
|
||||
const ObjType::ScatteredRelocationEntry *SRE =
|
||||
const typename MachOObjectFileMiddle<E>::ScatteredRelocationEntry *SRE =
|
||||
reinterpret_cast<const typename ObjType::ScatteredRelocationEntry *>(RE);
|
||||
return SRE->getPCRel();
|
||||
}
|
||||
@ -616,7 +616,7 @@ unsigned
|
||||
MachOObjectFileMiddle<E>::getRelocationLength(const RelocationEntry *RE) const {
|
||||
typedef MachOObjectFileMiddle<E> ObjType;
|
||||
if (isRelocationScattered(RE)) {
|
||||
const ObjType::ScatteredRelocationEntry *SRE =
|
||||
const typename ObjType::ScatteredRelocationEntry *SRE =
|
||||
reinterpret_cast<const typename ObjType::ScatteredRelocationEntry *>(RE);
|
||||
return SRE->getLength();
|
||||
}
|
||||
@ -629,7 +629,7 @@ MachOObjectFileMiddle<E>::getRelocationTypeImpl(const RelocationEntry *RE)
|
||||
const {
|
||||
typedef MachOObjectFileMiddle<E> ObjType;
|
||||
if (isRelocationScattered(RE)) {
|
||||
const ObjType::ScatteredRelocationEntry *SRE =
|
||||
const typename ObjType::ScatteredRelocationEntry *SRE =
|
||||
reinterpret_cast<const typename ObjType::ScatteredRelocationEntry *>(RE);
|
||||
return SRE->getType();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user