1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

silence warning when assertions are disabled.

llvm-svn: 37654
This commit is contained in:
Chris Lattner 2007-06-19 06:40:46 +00:00
parent 8cb2c3f5df
commit efa46b445c

View File

@ -1502,8 +1502,7 @@ void DAGISelEmitter::ParseInstructions() {
unsigned NumResults = InstResults.size();
// Parse the operands list from the (ops) list, validating it.
std::vector<std::string> &Args = I->getArgList();
assert(Args.empty() && "Args list should still be empty here!");
assert(I->getArgList().empty() && "Args list should still be empty here!");
CodeGenInstruction &CGI = Target.getInstruction(Instrs[i]->getName());
// Check that all of the results occur first in the list.