scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit 46372e9a0d5cbac26feb3890f0539c6d7d327f71
parent 2541dce5d67d302749487259f2feb36fd0f27f40
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Tue, 24 Jan 2017 17:06:05 +0100

[tests] Use stdint.h in 0107-bnot.c

This test was assuming several sizes in the integer types
which is totall wrong for a test.

Diffstat:
Mtests/execute/0107-bnot.c | 5+++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/tests/execute/0107-bnot.c b/tests/execute/0107-bnot.c @@ -1,10 +1,11 @@ +#include <stdint.h> int main() { - int x; - long long l; + int32_t x; + int64_t l; x = 0; l = 0;