Skip to content

Commit 393b79e

Browse files
committed
Lanai: fix -Wpedantic warnings
Extra semicolon. llvm-svn: 265365
1 parent 8921007 commit 393b79e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

llvm/lib/Target/Lanai/LanaiMemAluCombiner.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ class LanaiMemAluCombiner : public MachineFunctionPass {
9090
char LanaiMemAluCombiner::ID = 0;
9191

9292
INITIALIZE_PASS(LanaiMemAluCombiner, DEBUG_TYPE,
93-
"Lanai memory ALU combiner pass", false, false);
93+
"Lanai memory ALU combiner pass", false, false)
9494

9595
namespace {
9696
bool isSpls(uint16_t Opcode) { return Lanai::splsIdempotent(Opcode) == Opcode; }

llvm/lib/Target/Lanai/LanaiSetflagAluCombiner.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class LanaiSetflagAluCombiner : public MachineFunctionPass {
6464
char LanaiSetflagAluCombiner::ID = 0;
6565

6666
INITIALIZE_PASS(LanaiSetflagAluCombiner, DEBUG_TYPE,
67-
"Lanai SET_FLAG ALU combiner pass", false, false);
67+
"Lanai SET_FLAG ALU combiner pass", false, false)
6868

6969
namespace {
7070

0 commit comments

Comments
 (0)