[llvm] r190067 - Rename enums to match convention and remove superfluous "dwarf" in names.
Eric Christopher
echristo at gmail.com
Thu Sep 5 09:55:36 PDT 2013
Author: echristo
Date: Thu Sep 5 11:55:35 2013
New Revision: 190067
URL: http://llvm.org/viewvc/llvm-project?rev=190067&view=rev
Log:
Rename enums to match convention and remove superfluous "dwarf" in names.
Modified:
llvm/trunk/include/llvm/Support/Dwarf.h
Modified: llvm/trunk/include/llvm/Support/Dwarf.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/Dwarf.h?rev=190067&r1=190066&r2=190067&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/Dwarf.h (original)
+++ llvm/trunk/include/llvm/Support/Dwarf.h Thu Sep 5 11:55:35 2013
@@ -46,7 +46,7 @@ namespace dwarf {
// Do not mix the following two enumerations sets. DW_TAG_invalid changes the
// enumeration base type.
-enum llvm_dwarf_constants {
+enum LLVMConstants {
// llvm mock tags
DW_TAG_invalid = ~0U, // Tag for invalid results.
@@ -66,7 +66,7 @@ enum llvm_dwarf_constants {
const uint32_t DW_CIE_ID = UINT32_MAX;
const uint64_t DW64_CIE_ID = UINT64_MAX;
-enum dwarf_constants {
+enum Constants {
// Tags
DW_TAG_array_type = 0x01,
DW_TAG_class_type = 0x02,
More information about the llvm-commits
mailing list