Thanks!<span></span><br><br>On Wednesday, September 3, 2014, Yaron Keren <<a href="mailto:yaron.keren@gmail.com">yaron.keren@gmail.com</a>> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Author: yrnkrn<br>
Date: Wed Sep  3 03:22:30 2014<br>
New Revision: 217023<br>
<br>
URL: <a href="http://llvm.org/viewvc/llvm-project?rev=217023&view=rev" target="_blank">http://llvm.org/viewvc/llvm-project?rev=217023&view=rev</a><br>
Log:<br>
Fix ambiguous call to make_unique and clang-format.<br>
<br>
<br>
Modified:<br>
    llvm/trunk/utils/TableGen/FixedLenDecoderEmitter.cpp<br>
<br>
Modified: llvm/trunk/utils/TableGen/FixedLenDecoderEmitter.cpp<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/FixedLenDecoderEmitter.cpp?rev=217023&r1=217022&r2=217023&view=diff" target="_blank">http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/TableGen/FixedLenDecoderEmitter.cpp?rev=217023&r1=217022&r2=217023&view=diff</a><br>

==============================================================================<br>
--- llvm/trunk/utils/TableGen/FixedLenDecoderEmitter.cpp (original)<br>
+++ llvm/trunk/utils/TableGen/FixedLenDecoderEmitter.cpp Wed Sep  3 03:22:30 2014<br>
@@ -551,13 +551,10 @@ void Filter::recurse() {<br>
<br>
     // Delegates to an inferior filter chooser for further processing on this<br>
     // group of instructions whose segment values are variable.<br>
-    FilterChooserMap.insert(std::make_pair(<br>
-                              -1U,<br>
-                              make_unique<FilterChooser>(Owner->AllInstructions,<br>
-                                                         VariableInstructions,<br>
-                                                         Owner->Operands,<br>
-                                                         BitValueArray,<br>
-                                                         *Owner)));<br>
+    FilterChooserMap.insert(<br>
+        std::make_pair(-1U, llvm::make_unique<FilterChooser>(<br>
+                                Owner->AllInstructions, VariableInstructions,<br>
+                                Owner->Operands, BitValueArray, *Owner)));<br>
   }<br>
<br>
   // No need to recurse for a singleton filtered instruction.<br>
@@ -584,12 +581,9 @@ void Filter::recurse() {<br>
     // Delegates to an inferior filter chooser for further processing on this<br>
     // category of instructions.<br>
     FilterChooserMap.insert(std::make_pair(<br>
-                              mapIterator->first,<br>
-                              make_unique<FilterChooser>(Owner->AllInstructions,<br>
-                                                         mapIterator->second,<br>
-                                                         Owner->Operands,<br>
-                                                         BitValueArray,<br>
-                                                         *Owner)));<br>
+        mapIterator->first, llvm::make_unique<FilterChooser>(<br>
+                                Owner->AllInstructions, mapIterator->second,<br>
+                                Owner->Operands, BitValueArray, *Owner)));<br>
   }<br>
 }<br>
<br>
<br>
<br>
_______________________________________________<br>
llvm-commits mailing list<br>
<a href="javascript:;" onclick="_e(event, 'cvml', 'llvm-commits@cs.uiuc.edu')">llvm-commits@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits</a><br>
</blockquote><br><br>-- <br>~Craig<br>