]> granicus.if.org Git - llvm/commitdiff
Attempt to fix windows buildbots after r293172.
authorDaniel Sanders <daniel_l_sanders@apple.com>
Thu, 26 Jan 2017 11:23:49 +0000 (11:23 +0000)
committerDaniel Sanders <daniel_l_sanders@apple.com>
Thu, 26 Jan 2017 11:23:49 +0000 (11:23 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@293173 91177308-0d34-0410-b5e6-96231b3b80d8

utils/TableGen/GlobalISelEmitter.cpp

index 8f1ce9b323feb3fdfaf31dc56d8f7d76e51aeaa4..c5094cda43098aef3d5a08dbfa6335ad7dda253a 100644 (file)
@@ -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());
   }