summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexey Samsonov <samsonov@google.com>2014-03-19 09:38:31 +0000
committerAlexey Samsonov <samsonov@google.com>2014-03-19 09:38:31 +0000
commit8e6829e4369832185333a2ce33f599989309b203 (patch)
treedbf65259c11bdbc14c34fd106145f0cec66c4a04
parent364b8b8fe5fbeda0887e15b3a85bc85fc9f3a5dc (diff)
downloadbcm5719-llvm-8e6829e4369832185333a2ce33f599989309b203.tar.gz
bcm5719-llvm-8e6829e4369832185333a2ce33f599989309b203.zip
Remove extra semicolon for -Wpedantic
llvm-svn: 204219
-rw-r--r--lld/lib/ReaderWriter/MachO/MachONormalizedFile.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/lld/lib/ReaderWriter/MachO/MachONormalizedFile.h b/lld/lib/ReaderWriter/MachO/MachONormalizedFile.h
index b135998d87a..eb3294d2888 100644
--- a/lld/lib/ReaderWriter/MachO/MachONormalizedFile.h
+++ b/lld/lib/ReaderWriter/MachO/MachONormalizedFile.h
@@ -101,7 +101,7 @@ typedef std::vector<Hex8> ContentBytes;
typedef std::vector<uint32_t> IndirectSymbols;
/// A typedef so that YAML I/O can encode/decode section attributes.
-LLVM_YAML_STRONG_TYPEDEF(uint32_t, SectionAttr);
+LLVM_YAML_STRONG_TYPEDEF(uint32_t, SectionAttr)
/// Mach-O has a 32-bit and 64-bit section record. This normalized form
/// can support either kind.
@@ -122,10 +122,10 @@ struct Section {
/// A typedef so that YAML I/O can encode/decode the scope bits of an nlist.
-LLVM_YAML_STRONG_TYPEDEF(uint8_t, SymbolScope);
+LLVM_YAML_STRONG_TYPEDEF(uint8_t, SymbolScope)
/// A typedef so that YAML I/O can encode/decode the desc bits of an nlist.
-LLVM_YAML_STRONG_TYPEDEF(uint16_t, SymbolDesc);
+LLVM_YAML_STRONG_TYPEDEF(uint16_t, SymbolDesc)
/// Mach-O has a 32-bit and 64-bit symbol table entry (nlist), and the symbol
/// type and scope and mixed in the same n_type field. This normalized form
@@ -142,7 +142,7 @@ struct Symbol {
};
/// A typedef so that YAML I/O can (de/en)code the protection bits of a segment.
-LLVM_YAML_STRONG_TYPEDEF(uint32_t, VMProtect);
+LLVM_YAML_STRONG_TYPEDEF(uint32_t, VMProtect)
/// Segments are only used in normalized final linked images (not in relocatable
/// object files). They specify how a range of the file is loaded.
@@ -179,7 +179,7 @@ struct BindLocation {
};
/// A typedef so that YAML I/O can encode/decode export flags.
-LLVM_YAML_STRONG_TYPEDEF(uint32_t, ExportFlags);
+LLVM_YAML_STRONG_TYPEDEF(uint32_t, ExportFlags)
/// A normalized export entry. Only used in normalized final linked images.
struct Export {
@@ -193,7 +193,7 @@ struct Export {
/// A typedef so that YAML I/O can encode/decode mach_header.flags.
-LLVM_YAML_STRONG_TYPEDEF(uint32_t, FileFlags);
+LLVM_YAML_STRONG_TYPEDEF(uint32_t, FileFlags)
///
struct NormalizedFile {
OpenPOWER on IntegriCloud