aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/ELF.h
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2009-12-19 07:05:23 +0000
committerDouglas Gregor <dgregor@apple.com>2009-12-19 07:05:23 +0000
commitcabdd7425d30f7eb659ecb0cc5efbc4052dd78a8 (patch)
treed9fa1ef1b5b9c3b85189cd95f0c993ee77b45d73 /lib/CodeGen/ELF.h
parent0ebc6ce974287498460a5bf66f2620f5dbc5e08c (diff)
downloadexternal_llvm-cabdd7425d30f7eb659ecb0cc5efbc4052dd78a8.zip
external_llvm-cabdd7425d30f7eb659ecb0cc5efbc4052dd78a8.tar.gz
external_llvm-cabdd7425d30f7eb659ecb0cc5efbc4052dd78a8.tar.bz2
Fix a bunch of little errors that Clang complains about when its being pedantic
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91764 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/ELF.h')
-rw-r--r--lib/CodeGen/ELF.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/ELF.h b/lib/CodeGen/ELF.h
index e303ebb..cb5a8c0 100644
--- a/lib/CodeGen/ELF.h
+++ b/lib/CodeGen/ELF.h
@@ -82,14 +82,14 @@ namespace llvm {
const GlobalValue *getGlobalValue() const {
assert(SourceType == isGV && "This is not a global value");
return Source.GV;
- };
+ }
// getExternalSym - If this is an external symbol which originated the
// elf symbol, return a reference to it.
const char *getExternalSymbol() const {
assert(SourceType == isExtSym && "This is not an external symbol");
return Source.Ext;
- };
+ }
// getGV - From a global value return a elf symbol to represent it
static ELFSym *getGV(const GlobalValue *GV, unsigned Bind,