X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/31a461643fe82c00e0fe4efc8941eee20b0838ea..8bcc1dbe28f658ea786ba234a679601edd30758a:/src/mc/mc_dwarf_tagnames.cpp diff --git a/src/mc/mc_dwarf_tagnames.cpp b/src/mc/mc_dwarf_tagnames.cpp index af6b526990..e17cf2f2f2 100644 --- a/src/mc/mc_dwarf_tagnames.cpp +++ b/src/mc/mc_dwarf_tagnames.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2014. The SimGrid Team. +/* Copyright (c) 2014-2015. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -7,17 +7,15 @@ /* Warning: autogenerated, do not edit! */ #include -#include #include -#include "mc_object_info.h" /** \brief Get the name of a dwarf tag (DW_TAG_*) from its code * * \param tag tag code (see the DWARF specification) * \return name of the tag */ -XBT_INTERNAL +XBT_PRIVATE const char *MC_dwarf_tagname(int tag) { switch (tag) { @@ -95,8 +93,6 @@ const char *MC_dwarf_tagname(int tag) case 0x4109: return "DW_TAG_GNU_call_site"; case 0x410a: return "DW_TAG_GNU_call_site_parameter"; case 0xffff: return "DW_TAG_hi_user"; - case DW_TAG_invalid: - return "DW_TAG_invalid"; default: return "DW_TAG_unknown"; }