forked from OSchip/llvm-project
NFC Avoid a warning in WasmEHPrepare.cpp
``` ../lib/CodeGen/WasmEHPrepare.cpp:166:30: warning: extra ‘;’ [-Wpedantic] false, false); ^ ``` llvm-svn: 333732
This commit is contained in:
parent
97ca6b9e09
commit
27c96d3d20
|
@ -163,7 +163,7 @@ public:
|
|||
|
||||
char WasmEHPrepare::ID = 0;
|
||||
INITIALIZE_PASS(WasmEHPrepare, DEBUG_TYPE, "Prepare WebAssembly exceptions",
|
||||
false, false);
|
||||
false, false)
|
||||
|
||||
FunctionPass *llvm::createWasmEHPass() { return new WasmEHPrepare(); }
|
||||
|
||||
|
|
Loading…
Reference in New Issue