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:
Gabor Buella 2018-06-01 07:47:46 +00:00
parent 97ca6b9e09
commit 27c96d3d20
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ public:
char WasmEHPrepare::ID = 0; char WasmEHPrepare::ID = 0;
INITIALIZE_PASS(WasmEHPrepare, DEBUG_TYPE, "Prepare WebAssembly exceptions", INITIALIZE_PASS(WasmEHPrepare, DEBUG_TYPE, "Prepare WebAssembly exceptions",
false, false); false, false)
FunctionPass *llvm::createWasmEHPass() { return new WasmEHPrepare(); } FunctionPass *llvm::createWasmEHPass() { return new WasmEHPrepare(); }