summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJF Bastien <jfb@google.com>2016-04-04 23:47:30 +0000
committerJF Bastien <jfb@google.com>2016-04-04 23:47:30 +0000
commit393b79ee00d5491ac720784ded3d00e229e204dc (patch)
tree71810b18c20460562b16616e904beca39dc13deb
parent8921007090c915236c011aaebe466d0c0dcfb677 (diff)
downloadbcm5719-llvm-393b79ee00d5491ac720784ded3d00e229e204dc.tar.gz
bcm5719-llvm-393b79ee00d5491ac720784ded3d00e229e204dc.zip
Lanai: fix -Wpedantic warnings
Extra semicolon. llvm-svn: 265365
-rw-r--r--llvm/lib/Target/Lanai/LanaiMemAluCombiner.cpp2
-rw-r--r--llvm/lib/Target/Lanai/LanaiSetflagAluCombiner.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/Lanai/LanaiMemAluCombiner.cpp b/llvm/lib/Target/Lanai/LanaiMemAluCombiner.cpp
index b0780c2f69b..9481b5aed0d 100644
--- a/llvm/lib/Target/Lanai/LanaiMemAluCombiner.cpp
+++ b/llvm/lib/Target/Lanai/LanaiMemAluCombiner.cpp
@@ -90,7 +90,7 @@ private:
char LanaiMemAluCombiner::ID = 0;
INITIALIZE_PASS(LanaiMemAluCombiner, DEBUG_TYPE,
- "Lanai memory ALU combiner pass", false, false);
+ "Lanai memory ALU combiner pass", false, false)
namespace {
bool isSpls(uint16_t Opcode) { return Lanai::splsIdempotent(Opcode) == Opcode; }
diff --git a/llvm/lib/Target/Lanai/LanaiSetflagAluCombiner.cpp b/llvm/lib/Target/Lanai/LanaiSetflagAluCombiner.cpp
index a69de7a769e..28a13909711 100644
--- a/llvm/lib/Target/Lanai/LanaiSetflagAluCombiner.cpp
+++ b/llvm/lib/Target/Lanai/LanaiSetflagAluCombiner.cpp
@@ -64,7 +64,7 @@ private:
char LanaiSetflagAluCombiner::ID = 0;
INITIALIZE_PASS(LanaiSetflagAluCombiner, DEBUG_TYPE,
- "Lanai SET_FLAG ALU combiner pass", false, false);
+ "Lanai SET_FLAG ALU combiner pass", false, false)
namespace {
OpenPOWER on IntegriCloud