[PATCH] D38701: Fix LLDB build for Android.
Eugene Zemtsov via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 9 15:43:54 PDT 2017
This revision was automatically updated to reflect the committed changes.
Closed by commit rL315246: Fix LLDB build for Android. (authored by eugene).
Changed prior to commit:
https://reviews.llvm.org/D38701?vs=118248&id=118285#toc
Repository:
rL LLVM
https://reviews.llvm.org/D38701
Files:
llvm/trunk/utils/TableGen/X86FoldTablesEmitter.cpp
Index: llvm/trunk/utils/TableGen/X86FoldTablesEmitter.cpp
===================================================================
--- llvm/trunk/utils/TableGen/X86FoldTablesEmitter.cpp
+++ llvm/trunk/utils/TableGen/X86FoldTablesEmitter.cpp
@@ -117,7 +117,7 @@
if (E.CannotUnfold)
OS << "TB_NO_REVERSE | ";
if (E.IsAligned)
- OS << "TB_ALIGN_" + std::to_string(E.Alignment) + " | ";
+ OS << "TB_ALIGN_" << E.Alignment << " | ";
OS << "0 },\n";
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D38701.118285.patch
Type: text/x-patch
Size: 487 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20171009/d636f04b/attachment.bin>
More information about the llvm-commits
mailing list