[Hexagon] Removing assertion to appease buildbot until I can reproduce the problem
authorColin LeMahieu <colinl@codeaurora.org>
Wed, 31 Dec 2014 16:20:00 +0000 (16:20 +0000)
committerColin LeMahieu <colinl@codeaurora.org>
Wed, 31 Dec 2014 16:20:00 +0000 (16:20 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225045 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.cpp

index 830be55431dff3719da5bf9ba33bba8f3ca41301..3f978d8ae53addbcd75efe07af535ed987eb5538 100644 (file)
@@ -71,7 +71,6 @@ HexagonMCCodeEmitter::getMachineOpValue(MCInst const &MI, MCOperand const &MO,
     return MCT.getRegisterInfo()->getEncodingValue(MO.getReg());
   if (MO.isImm())
     return static_cast<unsigned>(MO.getImm());
-  assert(false && "Only Immediates and Registers implemented right now");
   return 0;
 }