diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-12-19 07:05:23 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-12-19 07:05:23 +0000 |
commit | 740ab38bb76f31b6301982d96699a7afe9badb77 (patch) | |
tree | 4debfabce3bc366b2c2edaa5748173201d165007 /llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | |
parent | 4ad5eba568c3362eb2d84421e51ce630fcff478d (diff) | |
download | bcm5719-llvm-740ab38bb76f31b6301982d96699a7afe9badb77.tar.gz bcm5719-llvm-740ab38bb76f31b6301982d96699a7afe9badb77.zip |
Fix a bunch of little errors that Clang complains about when its being pedantic
llvm-svn: 91764
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index 44fd176a79e..74618e0dbca 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp @@ -236,7 +236,7 @@ namespace { const MCSection *S; unsigned Alignment; SmallVector<unsigned, 4> CPEs; - SectionCPs(const MCSection *s, unsigned a) : S(s), Alignment(a) {}; + SectionCPs(const MCSection *s, unsigned a) : S(s), Alignment(a) {} }; } |