 Chromium Code Reviews
 Chromium Code Reviews Issue 110203002:
  Refactor the compiling pipeline.  (Closed) 
  Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
    
  
    Issue 110203002:
  Refactor the compiling pipeline.  (Closed) 
  Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge| Index: src/utils.h | 
| diff --git a/src/utils.h b/src/utils.h | 
| index 3a0936eaa63cbeee5e858160eabbdab0bd6d03d9..14a4c5681c7061706231604a16fa4fcab6e8d05d 100644 | 
| --- a/src/utils.h | 
| +++ b/src/utils.h | 
| @@ -1118,6 +1118,7 @@ class BailoutId { | 
| bool IsNone() const { return id_ == kNoneId; } | 
| bool operator==(const BailoutId& other) const { return id_ == other.id_; } | 
| + bool operator!=(const BailoutId& other) const { return id_ != other.id_; } | 
| private: | 
| static const int kNoneId = -1; |