[llvm] r293173 - Attempt to fix windows buildbots after r293172.
Daniel Sanders via llvm-commits
llvm-commits at lists.llvm.org
Thu Jan 26 03:23:50 PST 2017
Author: dsanders
Date: Thu Jan 26 05:23:49 2017
New Revision: 293173
URL: http://llvm.org/viewvc/llvm-project?rev=293173&view=rev
Log:
Attempt to fix windows buildbots after r293172.
Modified:
llvm/trunk/utils/TableGen/GlobalISelEmitter.cpp
Modified: llvm/trunk/utils/TableGen/GlobalISelEmitter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/GlobalISelEmitter.cpp?rev=293173&r1=293172&r2=293173&view=diff
==============================================================================
--- llvm/trunk/utils/TableGen/GlobalISelEmitter.cpp (original)
+++ llvm/trunk/utils/TableGen/GlobalISelEmitter.cpp Thu Jan 26 05:23:49 2017
@@ -129,7 +129,7 @@ public:
/// Construct a new operand predicate and add it to the matcher.
template <class Kind, class... Args>
Kind &addPredicate(Args&&... args) {
- Predicates.emplace_back(make_unique<Kind>(std::forward<Args...>(args)...));
+ Predicates.emplace_back(llvm::make_unique<Kind>(std::forward<Args...>(args)...));
return *static_cast<Kind *>(Predicates.back().get());
}
More information about the llvm-commits
mailing list