From 9343bd9aff1ce501c26cb3d111bc868731ca0d96 Mon Sep 17 00:00:00 2001 From: Alexey Samsonov Date: Wed, 2 Dec 2015 21:13:43 +0000 Subject: [PATCH] [Hexagon] Remove std::hex in favor of format(). std::hex is not used anywhere in LLVM code base except for this place, and it has a known undefined behavior (at least in libstdc++ 4.9.3): https://llvm.org/bugs/show_bug.cgi?id=18156, which fires in UBSan bootstrap of LLVM. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@254547 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/Hexagon/AsmParser/HexagonAsmParser.cpp | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/lib/Target/Hexagon/AsmParser/HexagonAsmParser.cpp b/lib/Target/Hexagon/AsmParser/HexagonAsmParser.cpp index b73ec0bfb19..2e780f035b2 100644 --- a/lib/Target/Hexagon/AsmParser/HexagonAsmParser.cpp +++ b/lib/Target/Hexagon/AsmParser/HexagonAsmParser.cpp @@ -38,6 +38,7 @@ #include "llvm/Support/CommandLine.h" #include "llvm/Support/Debug.h" #include "llvm/Support/ELF.h" +#include "llvm/Support/Format.h" #include "llvm/Support/SourceMgr.h" #include "llvm/Support/MemoryBuffer.h" #include "llvm/Support/TargetRegistry.h" @@ -1511,14 +1512,15 @@ unsigned HexagonAsmParser::validateTargetOperandClass(MCParsedAsmOperand &AsmOp, } void HexagonAsmParser::OutOfRange(SMLoc IDLoc, long long Val, long long Max) { - std::stringstream errStr; - errStr << "value " << Val << "(0x" << std::hex << Val << std::dec + std::string errStr; + raw_string_ostream ES(errStr); + ES << "value " << Val << "(" << format("0x%" PRIx64, Val) << ") out of range: "; if (Max >= 0) - errStr << "0-" << Max; + ES << "0-" << Max; else - errStr << Max << "-" << (-Max - 1); - Error(IDLoc, errStr.str().c_str()); + ES << Max << "-" << (-Max - 1); + Error(IDLoc, ES.str().c_str()); } int HexagonAsmParser::processInstruction(MCInst &Inst, -- 2.11.0