MipsAsmBackend.cpp, PPCAsmBackend.cpp: Fix -Asserts build to appease msvc.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145894 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
NAKAMURA Takumi 2011-12-06 01:48:32 +00:00
parent 9ad7e07a0f
commit 6482e91149
2 changed files with 2 additions and 0 deletions

View File

@ -181,6 +181,7 @@ public:
const MCAsmLayout &Layout) const { const MCAsmLayout &Layout) const {
// FIXME. // FIXME.
assert(0 && "RelaxInstruction() unimplemented"); assert(0 && "RelaxInstruction() unimplemented");
return false;
} }
/// RelaxInstruction - Relax the instruction in the given fragment /// RelaxInstruction - Relax the instruction in the given fragment

View File

@ -100,6 +100,7 @@ public:
const MCAsmLayout &Layout) const { const MCAsmLayout &Layout) const {
// FIXME. // FIXME.
assert(0 && "RelaxInstruction() unimplemented"); assert(0 && "RelaxInstruction() unimplemented");
return false;
} }