| OLD | NEW |
| 1 //===- subzero/src/IceAssemblerMIPS32.h - Assembler for MIPS ----*- C++ -*-===// | 1 //===- subzero/src/IceAssemblerMIPS32.h - Assembler for MIPS ----*- C++ -*-===// |
| 2 // | 2 // |
| 3 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 3 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 4 // for details. All rights reserved. Use of this source code is governed by a | 4 // for details. All rights reserved. Use of this source code is governed by a |
| 5 // BSD-style license that can be found in the LICENSE file. | 5 // BSD-style license that can be found in the LICENSE file. |
| 6 // | 6 // |
| 7 // Modified by the Subzero authors. | 7 // Modified by the Subzero authors. |
| 8 // | 8 // |
| 9 //===----------------------------------------------------------------------===// | 9 //===----------------------------------------------------------------------===// |
| 10 // | 10 // |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 } | 72 } |
| 73 | 73 |
| 74 bool fixupIsPCRel(FixupKind Kind) const override { | 74 bool fixupIsPCRel(FixupKind Kind) const override { |
| 75 (void)Kind; | 75 (void)Kind; |
| 76 llvm::report_fatal_error("Not yet implemented."); | 76 llvm::report_fatal_error("Not yet implemented."); |
| 77 } | 77 } |
| 78 | 78 |
| 79 static bool classof(const Assembler *Asm) { | 79 static bool classof(const Assembler *Asm) { |
| 80 return Asm->getKind() == Asm_MIPS32; | 80 return Asm->getKind() == Asm_MIPS32; |
| 81 } | 81 } |
| 82 |
| 83 private: |
| 84 ENABLE_MAKE_UNIQUE; |
| 82 }; | 85 }; |
| 83 | 86 |
| 84 } // end of namespace MIPS32 | 87 } // end of namespace MIPS32 |
| 85 } // end of namespace Ice | 88 } // end of namespace Ice |
| 86 | 89 |
| 87 #endif // SUBZERO_SRC_ICEASSEMBLERMIPS32_H | 90 #endif // SUBZERO_SRC_ICEASSEMBLERMIPS32_H |
| OLD | NEW |