[llvm] r256389 - Remove unused constants from TypeTableBuilder.cpp.
Dave Bartolomeo via llvm-commits
llvm-commits at lists.llvm.org
Thu Dec 24 11:15:56 PST 2015
Author: dbartol
Date: Thu Dec 24 13:15:56 2015
New Revision: 256389
URL: http://llvm.org/viewvc/llvm-project?rev=256389&view=rev
Log:
Remove unused constants from TypeTableBuilder.cpp.
Modified:
llvm/trunk/lib/DebugInfo/CodeView/TypeTableBuilder.cpp
Modified: llvm/trunk/lib/DebugInfo/CodeView/TypeTableBuilder.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/DebugInfo/CodeView/TypeTableBuilder.cpp?rev=256389&r1=256388&r2=256389&view=diff
==============================================================================
--- llvm/trunk/lib/DebugInfo/CodeView/TypeTableBuilder.cpp (original)
+++ llvm/trunk/lib/DebugInfo/CodeView/TypeTableBuilder.cpp Thu Dec 24 13:15:56 2015
@@ -20,13 +20,9 @@ using namespace codeview;
namespace {
-const uint32_t PointerKindMask = 0x0000001f;
const int PointerKindShift = 0;
-const uint32_t PointerModeMask = 0x000000e0;
const int PointerModeShift = 5;
-const uint32_t PointerSizeMask = 0x0007e000;
const int PointerSizeShift = 13;
-const uint32_t PointerOptionsMask = 0x00081f00;
const int ClassHfaKindShift = 11;
const int ClassWindowsRTClassKindShift = 14;
More information about the llvm-commits
mailing list