forked from OSchip/llvm-project
Simplify expression that was explicitly naming an operator overload in a call.
llvm-svn: 206788
This commit is contained in:
parent
a56bd2ed29
commit
eb038915ab
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue