This is not a common case, in fact it never happens!

llvm-svn: 152027
This commit is contained in:
Duncan Sands 2012-03-05 12:23:00 +00:00
parent 533fb74c5d
commit 2640024ac8

View File

@ -87,10 +87,6 @@ namespace {
}
friend hash_code hash_value(const Expression &Value) {
// Optimize for the common case.
if (Value.varargs.empty())
return hash_combine(Value.opcode, Value.type);
return hash_combine(Value.opcode, Value.type,
hash_combine_range(Value.varargs.begin(),
Value.varargs.end()));