Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: m-labs/flickernoise
base: 84269d1
Choose a base ref
...
head repository: m-labs/flickernoise
compare: 63674ae
Choose a head ref
  • 7 commits
  • 22 files changed
  • 1 contributor

Commits on Dec 12, 2011

  1. src/renderer/: convert old-style function declarations

    foo() is old-style and may make the compiler do stupid things.
    Better to do it ANSI-style, i.e., foo(void)
    wpwrak authored and Sebastien Bourdeauducq committed Dec 12, 2011
    Copy the full SHA
    2ad458e View commit details
    Browse the repository at this point in the history
  2. renderer/compiler.c: include stdbool.h

    This can be needed for out-of-tree compilation of compiler.c
    wpwrak authored and Sebastien Bourdeauducq committed Dec 12, 2011
    Copy the full SHA
    7be1c97 View commit details
    Browse the repository at this point in the history
  3. src/Makefile: add quiet compilation and make it the default

    To return to the previous level of verbosity, use  make V=1
    wpwrak authored and Sebastien Bourdeauducq committed Dec 12, 2011
    Copy the full SHA
    f00b23f View commit details
    Browse the repository at this point in the history
  4. move compiler.[ch] from renderer/ to compiler/

    wpwrak authored and Sebastien Bourdeauducq committed Dec 12, 2011
    Copy the full SHA
    6e7a7da View commit details
    Browse the repository at this point in the history
  5. compiler.c: some of the usual whitespace cleanup

    Wrap long lines, add blank line between return and goto label, and
    remove trailing tabs.
    wpwrak authored and Sebastien Bourdeauducq committed Dec 12, 2011
    Copy the full SHA
    307fdbd View commit details
    Browse the repository at this point in the history
  6. compiler.c: fix off-by-one allocation typo

    wpwrak authored and Sebastien Bourdeauducq committed Dec 12, 2011
    Copy the full SHA
    f4869ce View commit details
    Browse the repository at this point in the history
  7. compiler.c: free user-defined variables after compiling the patch

    This patch also corrects a heap-corruption bug in unique_free.
    Freeing the variables accelerates compilation of the regular patch
    set by about 35-40 ms.
    wpwrak authored and Sebastien Bourdeauducq committed Dec 12, 2011
    Copy the full SHA
    63674ae View commit details
    Browse the repository at this point in the history