[PATCH] D13666: Add an (optional) identification block in the bitcode

Oleksiy Vyalov via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 26 12:23:31 PDT 2015


ovyalov added a subscriber: ovyalov.

================
Comment at: lib/Bitcode/Reader/BitcodeReader.cpp:3122
@@ +3121,3 @@
+            (Major == LLVM_VERSION_MAJOR && Minor > LLVM_VERSION_MINOR)) {
+          auto BitcodeMajor = std::to_string(Major);
+          auto BitcodeMinor = std::to_string(Minor);
----------------
Android builder is failing because of unsupported std::to_string - http://lab.llvm.org:8011/builders/lldb-x86_64-ubuntu-14.04-buildserver/builds/2835/steps/build%20android/logs/stdio
Is it possible to replace this call here with std::ostringstream ?


http://reviews.llvm.org/D13666





More information about the llvm-commits mailing list