[WebAssembly] Call TargetPassConfig base class functions in overriding functions.
authorDan Gohman <dan433584@gmail.com>
Sat, 5 Dec 2015 19:24:17 +0000 (19:24 +0000)
committerDan Gohman <dan433584@gmail.com>
Sat, 5 Dec 2015 19:24:17 +0000 (19:24 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@254855 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp

index b54699243bd46a2861b975641a0c50563d882582..917dfacfe9d5c2f605fdd0487d75776164769e23 100644 (file)
@@ -146,14 +146,20 @@ void WebAssemblyPassConfig::addIRPasses() {
 }
 
 bool WebAssemblyPassConfig::addInstSelector() {
+  (void)TargetPassConfig::addInstSelector();
   addPass(
       createWebAssemblyISelDag(getWebAssemblyTargetMachine(), getOptLevel()));
   return false;
 }
 
-bool WebAssemblyPassConfig::addILPOpts() { return true; }
+bool WebAssemblyPassConfig::addILPOpts() {
+  (void)TargetPassConfig::addILPOpts();
+  return true;
+}
 
 void WebAssemblyPassConfig::addPreRegAlloc() {
+  TargetPassConfig::addPreRegAlloc();
+
   // Prepare store instructions for register stackifying.
   addPass(createWebAssemblyStoreResults());
 
@@ -173,9 +179,13 @@ void WebAssemblyPassConfig::addPostRegAlloc() {
 
   // Run the register coloring pass to reduce the total number of registers.
   addPass(createWebAssemblyRegColoring());
+
+  TargetPassConfig::addPostRegAlloc();
 }
 
 void WebAssemblyPassConfig::addPreEmitPass() {
+  TargetPassConfig::addPreEmitPass();
+    
   // Put the CFG in structured form; insert BLOCK and LOOP markers.
   addPass(createWebAssemblyCFGStackify());