Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(307)

Side by Side Diff: src/IceTargetLoweringMIPS32.cpp

Issue 1171563002: Subzero: Emit ARM build-attributes in the file scope (as header). (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: use class final, fix for mips32 Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698