Simplify expression that was explicitly naming an operator overload in a call.

llvm-svn: 206788
This commit is contained in:
David Blaikie 2014-04-21 20:43:51 +00:00
parent a56bd2ed29
commit eb038915ab
1 changed files with 1 additions and 1 deletions

View File

@ -2308,7 +2308,7 @@ public:
}
void setVal(Value *V, Constant *C) {
ValueStack.back()->operator[](V) = C;
(*ValueStack.back())[V] = C;
}
const DenseMap<Constant*, Constant*> &getMutatedMemory() const {