<div dir="ltr">I think you should just #include <tuple>, which defines std::tie. r211569 should fix this. </div><div class="gmail_extra"><br><br><div class="gmail_quote">On Mon, Jun 23, 2014 at 8:32 PM, Michel Dänzer <span dir="ltr"><<a href="mailto:michel@daenzer.net" target="_blank">michel@daenzer.net</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">From: Michel Dänzer <<a href="mailto:michel.daenzer@amd.com">michel.daenzer@amd.com</a>><br>
<br>
Fixes build failure due to undefined std::tie:<br>
<br>
In file included from /home/daenzer/src/llvm-git/llvm/lib/Support/ScaledNumber.cpp:14:<br>
/home/daenzer/src/llvm-git/llvm/include/llvm/Support/ScaledNumber.h:610:5: error: no member named 'tie' in namespace 'std'; did you mean 'time'?<br>
    std::tie(Digits, Scale) =<br>
    ^~~~~~~~<br>
<br>
Signed-off-by: Michel Dänzer <<a href="mailto:michel.daenzer@amd.com">michel.daenzer@amd.com</a>><br>
---<br>
<br>
This is probably not the proper fix, just pointing out the problem.<br>
<br>
 include/llvm/Support/ScaledNumber.h | 1 +<br>
 1 file changed, 1 insertion(+)<br>
<br>
diff --git a/include/llvm/Support/ScaledNumber.h b/include/llvm/Support/ScaledNumber.h<br>
index c0818d9..bddecfc 100644<br>
--- a/include/llvm/Support/ScaledNumber.h<br>
+++ b/include/llvm/Support/ScaledNumber.h<br>
@@ -22,6 +22,7 @@<br>
 #ifndef LLVM_SUPPORT_SCALEDNUMBER_H<br>
 #define LLVM_SUPPORT_SCALEDNUMBER_H<br>
<br>
+#include "llvm/ADT/APFloat.h"<br>
 #include "llvm/Support/MathExtras.h"<br>
<br>
 #include <algorithm><br>
<span class="HOEnZb"><font color="#888888">--<br>
2.0.0<br>
<br>
_______________________________________________<br>
llvm-commits mailing list<br>
<a href="mailto: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>
</font></span></blockquote></div><br><br clear="all"><div><br></div>-- <br><div dir="ltr">Alexey Samsonov<br><a href="mailto:vonosmas@gmail.com" target="_blank">vonosmas@gmail.com</a></div>
</div>