1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-03-19 19:31:50 +00:00

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

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@152027 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Duncan Sands 2012-03-05 12:23:00 +00:00
parent e5121f2e22
commit 8d12f72c11

@ -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()));