Lanai: fix -Wpedantic warnings

Extra semicolon.

llvm-svn: 265365
This commit is contained in:
JF Bastien 2016-04-04 23:47:30 +00:00
parent 8921007090
commit 393b79ee00
2 changed files with 2 additions and 2 deletions

View File

@ -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; }

View File

@ -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 {