summaryrefslogtreecommitdiff
path: root/gcc/dwarf2out.c
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2016-07-26 00:16:26 -0700
committerYamaArashi <shadow962@live.com>2016-07-26 00:16:26 -0700
commitf3580e4659c20e4f46f180d92f8b8f0211f3d855 (patch)
tree96dc161fd4e80829cbba75c07429bcc5cbd629b2 /gcc/dwarf2out.c
parent055f692f630b8d6bee804c8d349d7c71a6b43798 (diff)
fix some warnings
Diffstat (limited to 'gcc/dwarf2out.c')
-rwxr-xr-xgcc/dwarf2out.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c
index c6f585c..03555d5 100755
--- a/gcc/dwarf2out.c
+++ b/gcc/dwarf2out.c
@@ -156,9 +156,6 @@ static unsigned fde_table_in_use;
fde_table. */
#define FDE_TABLE_INCREMENT 256
-/* A list of call frame insns for the CIE. */
-static dw_cfi_ref cie_cfi_head;
-
/* The number of the current function definition for which debugging
information is being generated. These numbers range from 1 up to the
maximum number of function definitions contained within the current
@@ -490,11 +487,9 @@ size_of_uleb128 (value)
register unsigned long value;
{
register unsigned long size = 0;
- register unsigned byte;
do
{
- byte = (value & 0x7f);
value >>= 7;
size += 1;
}