From: Craig Topper Date: Sun, 28 Jul 2013 21:28:02 +0000 (+0000) Subject: Remove use of sprintf added to X86 disassembler tablegen code. Send message with... X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=d953bcd4876b86e2d99ebbe87c03b2e41298f115;p=oota-llvm.git Remove use of sprintf added to X86 disassembler tablegen code. Send message with instruction name to errs() instead and use a generic message for the llvm_unreachable. Consistent with other places in this file. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187333 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/TableGen/X86RecognizableInstr.cpp b/utils/TableGen/X86RecognizableInstr.cpp index 309d5f0b1b4..7962f9b9834 100644 --- a/utils/TableGen/X86RecognizableInstr.cpp +++ b/utils/TableGen/X86RecognizableInstr.cpp @@ -19,7 +19,6 @@ #include "X86ModRMFilters.h" #include "llvm/Support/ErrorHandling.h" #include -#include using namespace llvm; @@ -308,9 +307,8 @@ InstructionContext RecognizableInstr::insnContext() const { if (HasEVEXPrefix) { if (HasVEX_LPrefix && HasEVEX_L2Prefix) { - char msg[200]; - sprintf(msg, "Don't support VEX.L if EVEX_L2 is enabled: %s", Name.c_str()); - llvm_unreachable(msg); + errs() << "Don't support VEX.L if EVEX_L2 is enabled: " << Name << "\n"; + llvm_unreachable("Don't support VEX.L if EVEX_L2 is enabled"); } // VEX_L & VEX_W if (HasVEX_LPrefix && HasVEX_WPrefix) {