[PATCH] D45320: [MemDep] Fixed handling of invariant.group

Krzysztof Pszeniczny via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 5 06:50:45 PDT 2018


amharc added inline comments.


================
Comment at: include/llvm/IR/ValueMap.h:109
       : Map(NumInitBuckets), Data(Data) {}
+  ValueMap(ValueMap &&) = default;
+  ValueMap &operator=(ValueMap &&) noexcept = default;
----------------
Can this be marked noexcept, like the move operator= below?


Repository:
  rL LLVM

https://reviews.llvm.org/D45320





More information about the llvm-commits mailing list