 Chromium Code Reviews
 Chromium Code Reviews Issue 1837663002:
  Initial Subzero WASM prototype.  (Closed) 
  Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
    
  
    Issue 1837663002:
  Initial Subzero WASM prototype.  (Closed) 
  Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master| Index: src/IceCfg.h | 
| diff --git a/src/IceCfg.h b/src/IceCfg.h | 
| index f9682e08bb256a300159b9d8ab9e3c72af9954dd..d8ad6dcbeeb726dae6c6ec492c86c57bed7909f9 100644 | 
| --- a/src/IceCfg.h | 
| +++ b/src/IceCfg.h | 
| @@ -256,6 +256,13 @@ public: | 
| Allocator->Deallocate(Array); | 
| } | 
| + /// Update Phi labels with InEdges. | 
| + /// | 
| + /// The WASM translator cannot always determine the right incoming edge for a | 
| 
Jim Stichnoth
2016/04/04 21:26:51
Might want to note that this is the case because t
 
Eric Holk
2016/04/04 22:23:22
Done.
 | 
| + /// value. The fixPhiNodes pass fills in the correct information once | 
| + /// everything is known. | 
| + void fixPhiNodes(); | 
| + | 
| private: | 
| friend class CfgAllocatorTraits; // for Allocator access. |