forked from OSchip/llvm-project
Fix LLDB build for Android.
Currently libstdc++ on Android doesn't support std::to_string(). Differential Revision: https://reviews.llvm.org/D38701 llvm-svn: 315246
This commit is contained in:
parent
9b206a7d60
commit
eb4adc3daf
|
@ -117,7 +117,7 @@ class X86FoldTablesEmitter {
|
|||
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";
|
||||
|
||||
|
|
Loading…
Reference in New Issue