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

Side by Side Diff: src/IceTargetLoweringMIPS32.cpp

Issue 1315193020: Fix warnings produced by g++ on Windows. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Add a missing void-cast Created 5 years, 3 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
« no previous file with comments | « src/IceTargetLoweringARM32.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 /// \file 10 /// \file
(...skipping 456 matching lines...) Expand 10 before | Expand all | Expand 10 after
467 (void)Inst; 467 (void)Inst;
468 UnimplementedError(Func->getContext()->getFlags()); 468 UnimplementedError(Func->getContext()->getFlags());
469 } 469 }
470 470
471 void TargetMIPS32::lowerInsertElement(const InstInsertElement *Inst) { 471 void TargetMIPS32::lowerInsertElement(const InstInsertElement *Inst) {
472 (void)Inst; 472 (void)Inst;
473 UnimplementedError(Func->getContext()->getFlags()); 473 UnimplementedError(Func->getContext()->getFlags());
474 } 474 }
475 475
476 void TargetMIPS32::lowerIntrinsicCall(const InstIntrinsicCall *Instr) { 476 void TargetMIPS32::lowerIntrinsicCall(const InstIntrinsicCall *Instr) {
477 switch (Intrinsics::IntrinsicID ID = Instr->getIntrinsicInfo().ID) { 477 switch (Instr->getIntrinsicInfo().ID) {
478 case Intrinsics::AtomicCmpxchg: { 478 case Intrinsics::AtomicCmpxchg: {
479 UnimplementedError(Func->getContext()->getFlags()); 479 UnimplementedError(Func->getContext()->getFlags());
480 return; 480 return;
481 } 481 }
482 case Intrinsics::AtomicFence: 482 case Intrinsics::AtomicFence:
483 UnimplementedError(Func->getContext()->getFlags()); 483 UnimplementedError(Func->getContext()->getFlags());
484 return; 484 return;
485 case Intrinsics::AtomicFenceAll: 485 case Intrinsics::AtomicFenceAll:
486 // NOTE: FenceAll should prevent and load/store from being moved 486 // NOTE: FenceAll should prevent and load/store from being moved
487 // across the fence (both atomic and non-atomic). The InstMIPS32Mfence 487 // across the fence (both atomic and non-atomic). The InstMIPS32Mfence
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after
718 void TargetDataMIPS32::lowerJumpTables() { 718 void TargetDataMIPS32::lowerJumpTables() {
719 if (Ctx->getFlags().getDisableTranslation()) 719 if (Ctx->getFlags().getDisableTranslation())
720 return; 720 return;
721 UnimplementedError(Ctx->getFlags()); 721 UnimplementedError(Ctx->getFlags());
722 } 722 }
723 723
724 TargetHeaderMIPS32::TargetHeaderMIPS32(GlobalContext *Ctx) 724 TargetHeaderMIPS32::TargetHeaderMIPS32(GlobalContext *Ctx)
725 : TargetHeaderLowering(Ctx) {} 725 : TargetHeaderLowering(Ctx) {}
726 726
727 } // end of namespace Ice 727 } // end of namespace Ice
OLDNEW
« no previous file with comments | « src/IceTargetLoweringARM32.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698