Skip to content

Commit af66659

Browse files
committed
[GlobalIsel] Fix a warning with GCC 7 -Wpedantic. NFCI.
llvm-svn: 304174
1 parent 6e88ac2 commit af66659

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/CodeGen/GlobalISel/Localizer.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ using namespace llvm;
2323
char Localizer::ID = 0;
2424
INITIALIZE_PASS(Localizer, DEBUG_TYPE,
2525
"Move/duplicate certain instructions close to their use", false,
26-
false);
26+
false)
2727

2828
Localizer::Localizer() : MachineFunctionPass(ID) {
2929
initializeLocalizerPass(*PassRegistry::getPassRegistry());

0 commit comments

Comments
 (0)