aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/ELFWriter.h
diff options
context:
space:
mode:
authorBruno Cardoso Lopes <bruno.cardoso@gmail.com>2009-07-16 06:26:41 +0000
committerBruno Cardoso Lopes <bruno.cardoso@gmail.com>2009-07-16 06:26:41 +0000
commit115934eb57d02d4413aea1931a56ca9102d59f0b (patch)
treeb5bc3baf0f35043e8263c3393a68722082153144 /lib/CodeGen/ELFWriter.h
parent90bb3f3706cdf4e26df5e2c977d9232ba7b89c4e (diff)
downloadexternal_llvm-115934eb57d02d4413aea1931a56ca9102d59f0b.zip
external_llvm-115934eb57d02d4413aea1931a56ca9102d59f0b.tar.gz
external_llvm-115934eb57d02d4413aea1931a56ca9102d59f0b.tar.bz2
Fix coding style issues pointed by Bill.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75898 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/ELFWriter.h')
-rw-r--r--lib/CodeGen/ELFWriter.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/CodeGen/ELFWriter.h b/lib/CodeGen/ELFWriter.h
index 3cc50fe..ee5a856 100644
--- a/lib/CodeGen/ELFWriter.h
+++ b/lib/CodeGen/ELFWriter.h
@@ -34,6 +34,9 @@ namespace llvm {
class TargetELFWriterInfo;
class raw_ostream;
+ typedef std::vector<ELFSym*>::iterator ELFSymIter;
+ typedef std::vector<ELFSection*>::iterator ELFSectionIter;
+
/// ELFWriter - This class implements the common target-independent code for
/// writing ELF files. Targets should derive a class from this to
/// parameterize the output format.