diff options
| author | Rui Ueyama <ruiu@google.com> | 2013-11-05 01:37:40 +0000 |
|---|---|---|
| committer | Rui Ueyama <ruiu@google.com> | 2013-11-05 01:37:40 +0000 |
| commit | c1800beb559c92ba4a22c62b5171ad54ac5f3b6c (patch) | |
| tree | 73f15e06d98d55f2a3f12a46764b3a546406bb7e /lld/lib/ReaderWriter/ELF/SegmentChunks.h | |
| parent | 1c8c3fe4b4705601a48dc126520ed9c355f9e956 (diff) | |
| download | bcm5719-llvm-c1800beb559c92ba4a22c62b5171ad54ac5f3b6c.tar.gz bcm5719-llvm-c1800beb559c92ba4a22c62b5171ad54ac5f3b6c.zip | |
Remove unnecessary namespace qualifier.
llvm-svn: 194037
Diffstat (limited to 'lld/lib/ReaderWriter/ELF/SegmentChunks.h')
| -rw-r--r-- | lld/lib/ReaderWriter/ELF/SegmentChunks.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/lib/ReaderWriter/ELF/SegmentChunks.h b/lld/lib/ReaderWriter/ELF/SegmentChunks.h index ef1de72c457..1afc6513068 100644 --- a/lld/lib/ReaderWriter/ELF/SegmentChunks.h +++ b/lld/lib/ReaderWriter/ELF/SegmentChunks.h @@ -548,7 +548,7 @@ template <class ELFT> void Segment<ELFT>::assignVirtualAddress(uint64_t &addr) { // Check if the segment is of type TLS // The sections that belong to the TLS segment have their // virtual addresses that are relative To TP - Section<ELFT> *currentSection = llvm::dyn_cast<Section<ELFT> >(section); + Section<ELFT> *currentSection = dyn_cast<Section<ELFT> >(section); if (currentSection) isTLSSegment = (currentSection->getSegmentType() == llvm::ELF::PT_TLS); |

