| OLD | NEW |
| 1 //===- subzero/src/IceTargetLoweringMIPS32.cpp - MIPS32 lowering ----------===// | 1 //===- subzero/src/IceTargetLoweringMIPS32.cpp - MIPS32 lowering ----------===// |
| 2 // | 2 // |
| 3 // The Subzero Code Generator | 3 // The Subzero Code Generator |
| 4 // | 4 // |
| 5 // This file is distributed under the University of Illinois Open Source | 5 // This file is distributed under the University of Illinois Open Source |
| 6 // License. See LICENSE.TXT for details. | 6 // License. See LICENSE.TXT for details. |
| 7 // | 7 // |
| 8 //===----------------------------------------------------------------------===// | 8 //===----------------------------------------------------------------------===// |
| 9 // | 9 // |
| 10 // This file implements the TargetLoweringMIPS32 class, which consists almost | 10 // This file implements the TargetLoweringMIPS32 class, which consists almost |
| (...skipping 684 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 695 } break; | 695 } break; |
| 696 } | 696 } |
| 697 } | 697 } |
| 698 | 698 |
| 699 void TargetDataMIPS32::lowerConstants() const { | 699 void TargetDataMIPS32::lowerConstants() const { |
| 700 if (Ctx->getFlags().getDisableTranslation()) | 700 if (Ctx->getFlags().getDisableTranslation()) |
| 701 return; | 701 return; |
| 702 llvm::report_fatal_error("Not yet implemented"); | 702 llvm::report_fatal_error("Not yet implemented"); |
| 703 } | 703 } |
| 704 | 704 |
| 705 TargetHeaderMIPS32::TargetHeaderMIPS32(GlobalContext *Ctx) |
| 706 : TargetHeaderLowering(Ctx) {} |
| 707 |
| 705 } // end of namespace Ice | 708 } // end of namespace Ice |
| OLD | NEW |