Don't compare boolean values against TRUE or FALSE
[deliverable/binutils-gdb.git] / bfd / elf32-bfin.c
index b21a146db31f4d317080782ac123c34a8655d4df..b3e09bd9792949d6178a77fa9248aa3813865c06 100644 (file)
@@ -329,11 +329,11 @@ bfin_bfd_reloc (bfd *abfd,
   /* Here the variable relocation holds the final address of the
      symbol we are relocating against, plus any addend.  */
 
-  if (howto->pc_relative == TRUE)
+  if (howto->pc_relative)
     {
       relocation -= input_section->output_section->vma + input_section->output_offset;
 
-      if (howto->pcrel_offset == TRUE)
+      if (howto->pcrel_offset)
         relocation -= reloc_entry->address;
     }
 
This page took 0.023525 seconds and 4 git commands to generate.