Skip to content
Snippets Groups Projects
  1. Jan 30, 2020
    • Simon Tatham's avatar
      Make cmdline_tooltype a const int. · 575ee4f8
      Simon Tatham authored
      Another ugly mutable global variable gone: now, instead of this
      variable being defined in cmdline.c and written to by everyone's
      main(), it's defined _alongside_ everyone's main() as a constant, and
      cmdline.c just refers to it.
      
      A bonus is that now nocmdline.c doesn't have to define it anyway for
      tools that don't use cmdline.c. But mostly, it didn't need to be
      mutable, so better for it not to be.
      
      While I'm at it, I've also fiddled with the bit flags that go in it,
      to define their values automatically using a list macro instead of
      manually specifying each one to be a different power of 2.
      575ee4f8
  2. Jan 03, 2019
    • Simon Tatham's avatar
      Replace assert(false) with an unreachable() macro. · 0112936e
      Simon Tatham authored
      Taking a leaf out of the LLVM code base: this macro still includes an
      assert(false) so that the message will show up in a typical build, but
      it follows it up with a call to a function explicitly marked as no-
      return.
      
      So this ought to do a better job of convincing compilers that once a
      code path hits this function it _really doesn't_ have to still faff
      about with making up a bogus return value or filling in a variable
      that 'might be used uninitialised' in the following code that won't be
      reached anyway.
      
      I've gone through the existing code looking for the assert(false) /
      assert(0) idiom and replaced all the ones I found with the new macro,
      which also meant I could remove a few pointless return statements and
      variable initialisations that I'd already had to put in to placate
      compiler front ends.
      0112936e
  3. Nov 03, 2018
    • Simon Tatham's avatar
      Adopt C99 <stdbool.h>'s true/false. · a6f1709c
      Simon Tatham authored
      This commit includes <stdbool.h> from defs.h and deletes my
      traditional definitions of TRUE and FALSE, but other than that, it's a
      100% mechanical search-and-replace transforming all uses of TRUE and
      FALSE into the C99-standardised lowercase spellings.
      
      No actual types are changed in this commit; that will come next. This
      is just getting the noise out of the way, so that subsequent commits
      can have a higher proportion of signal.
      a6f1709c
  4. May 18, 2018
  5. Nov 27, 2017
Loading