aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSean Silva <silvas@purdue.edu>2013-06-10 23:48:38 +0000
committerSean Silva <silvas@purdue.edu>2013-06-10 23:48:38 +0000
commit981aec814c4e0b44636547422dab5955e4065077 (patch)
treeb2691d175ec15c977d34b76aab513dbf7395528b /include
parent5918b7a03d4d6a52e18f7c102250c9cfd6ae52dd (diff)
downloadexternal_llvm-981aec814c4e0b44636547422dab5955e4065077.zip
external_llvm-981aec814c4e0b44636547422dab5955e4065077.tar.gz
external_llvm-981aec814c4e0b44636547422dab5955e4065077.tar.bz2
Fix spurious semicolons.
Apparently these macros have semicolons inside of them already. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183712 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Object/ELFYAML.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Object/ELFYAML.h b/include/llvm/Object/ELFYAML.h
index 18eacce..d0067ca 100644
--- a/include/llvm/Object/ELFYAML.h
+++ b/include/llvm/Object/ELFYAML.h
@@ -32,10 +32,10 @@ namespace ELFYAML {
// to the `e_machine` constants, like `EM_X86_64`.
// In the future, these would probably be better suited by C++11 enum
// class's with appropriate fixed underlying type.
-LLVM_YAML_STRONG_TYPEDEF(uint16_t, ELF_ET);
-LLVM_YAML_STRONG_TYPEDEF(uint32_t, ELF_EM);
-LLVM_YAML_STRONG_TYPEDEF(uint8_t, ELF_ELFCLASS);
-LLVM_YAML_STRONG_TYPEDEF(uint8_t, ELF_ELFDATA);
+LLVM_YAML_STRONG_TYPEDEF(uint16_t, ELF_ET)
+LLVM_YAML_STRONG_TYPEDEF(uint32_t, ELF_EM)
+LLVM_YAML_STRONG_TYPEDEF(uint8_t, ELF_ELFCLASS)
+LLVM_YAML_STRONG_TYPEDEF(uint8_t, ELF_ELFDATA)
// For now, hardcode 64 bits everywhere that 32 or 64 would be needed
// since 64-bit can hold 32-bit values too.