summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-04-13 02:31:34 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-04-13 02:31:34 +0000
commit98c0eaecf51606fb1b83cdec6e6ddeaf091a61cc (patch)
tree3f7d1e71739a37d9a7b227af0e91d4c292b83cec /llvm
parent2f1edcd7583fcdf25361b3e0ffd7ccb5a4002d42 (diff)
downloadbcm5719-llvm-98c0eaecf51606fb1b83cdec6e6ddeaf091a61cc.tar.gz
bcm5719-llvm-98c0eaecf51606fb1b83cdec6e6ddeaf091a61cc.zip
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. llvm-svn: 179446
Diffstat (limited to 'llvm')
-rw-r--r--llvm/include/llvm/Object/MachO.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/include/llvm/Object/MachO.h b/llvm/include/llvm/Object/MachO.h
index b3051ccecff..6964c2e4ca5 100644
--- a/llvm/include/llvm/Object/MachO.h
+++ b/llvm/include/llvm/Object/MachO.h
@@ -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();
}
OpenPOWER on IntegriCloud