]> git.xonotic.org Git - xonotic/gmqcc.git/shortlog
xonotic/gmqcc.git
2012-08-16 Wolfgang (Blub... it's not undefined, stupid
2012-08-16 Wolfgang (Blub... cast mem_a returns in util_getline
2012-08-16 Wolfgang (Blub... add some missing casts to some mem_a
2012-08-16 Wolfgang (Blub... Shutup visual studio...
2012-08-16 Wolfgang (Blub... Replacing execloop.h ... wish I could just use a copy...
2012-08-16 Wolfgang (Blub... include stdio.h in exec.c for snprintf...
2012-08-16 Wolfgang (Blub... don't try to access function-local functions outside...
2012-08-16 Wolfgang (Blub... test for constants
2012-08-16 Wolfgang (Blub... assigning values to constant globals
2012-08-15 Wolfgang (Blub... ir.c: strcmp->memcpy
2012-08-15 Wolfgang (Blub... strpcy->memcpy
2012-08-15 Wolfgang (Blub... parser_finish needs to be called in progs.src mode...
2012-08-15 Wolfgang (Blub... remove MEM_VECTOR_INIT - the memset does it all, don...
2012-08-15 Wolfgang (Blub... Merge branch 'master' of git://github.com/graphitemaste...
2012-08-15 Wolfgang (Blub... Fix memset on the parser...
2012-08-14 Dale Weilergmqcc now builds on visual studio
2012-08-14 Wolfgang (Blub... Adding another test qc file, for constant folding
2012-08-14 Wolfgang (Blub... bit-and const-fold should use bitand not bitor
2012-08-14 Wolfgang (Blub... constant folding for bit and logic ops, added some...
2012-08-14 Wolfgang (Blub... const folding for division
2012-08-14 Wolfgang (Blub... constant folding for +, - and *
2012-08-14 Wolfgang (Blub... get rid of more duplicate code
2012-08-14 Wolfgang (Blub... Allow multiple fields to be declared using comma
2012-08-14 Wolfgang (Blub... vector fields now get _x, _y and _z too
2012-08-14 Wolfgang (Blub... progs.src mode added
2012-08-14 Wolfgang (Blub... combine 2 ifs to shorten code a little
2012-08-14 Wolfgang (Blub... -= operator
2012-08-14 Wolfgang (Blub... error message replacement
2012-08-14 Wolfgang (Blub... fixing ast_binstore_codegen's lvalue flag setting,...
2012-08-14 Wolfgang (Blub... += operator implemented
2012-08-14 Wolfgang (Blub... make the += operator use binstore actually, currently...
2012-08-14 Wolfgang (Blub... replacing lots of error messages
2012-08-14 Wolfgang (Blub... shush typo
2012-08-14 Wolfgang (Blub... different warning message
2012-08-14 Wolfgang (Blub... another -Wextensions situation: -std=qcc has no for...
2012-08-14 Wolfgang (Blub... Pushing my current testcode
2012-08-14 Wolfgang (Blub... fix wrong count on IF/IFNOT jumps
2012-08-14 Wolfgang (Blub... fixup do-while parsing, expect a semicolon afterwards
2012-08-14 Wolfgang (Blub... do-while loops
2012-08-14 Wolfgang (Blub... parsewarning() now gets GMQCC_WARN since parsewarning...
2012-08-14 Wolfgang (Blub... the 'local' keyword now also introduces the declaration...
2012-08-14 Wolfgang (Blub... flags and warnings not printed anymore without -dump
2012-08-14 Wolfgang (Blub... -dump option, by default the IR is not dumped anymore
2012-08-14 Wolfgang (Blub... -Wextensions for -std=qcc: warn about missing 'local...
2012-08-14 Wolfgang (Blub... -Wextensions on by default
2012-08-14 Wolfgang (Blub... eof after parsing the semicolon of a function declarati...
2012-08-14 Wolfgang (Blub... Getting rid of some debug output
2012-08-14 Wolfgang (Blub... 'local' becomes a keyword
2012-08-14 Wolfgang (Blub... allow a semicolon after function bodies - make it manda...
2012-08-14 Wolfgang (Blub... actually print the prototype's file+line, not the curre...
2012-08-14 Wolfgang (Blub... type comparison, function prototypes
2012-08-14 Wolfgang (Blub... the error about an already-declared variable should...
2012-08-14 Wolfgang (Blub... removed redundant error+file+line in parseerror()
2012-08-14 Wolfgang (Blub... removing all direct 'printfs' from ast and ir, replaced...
2012-08-14 Wolfgang (Blub... it's .file, not .name'
2012-08-14 Wolfgang (Blub... renamign 'errtype' to 'msgtype' here... makes more...
2012-08-14 Wolfgang (Blub... oops... removing wrongly placed semicolons
2012-08-14 Wolfgang (Blub... error-print functions which take lex_ctx
2012-08-14 Wolfgang (Blub... And a colon for the colored version too ...
2012-08-14 Wolfgang (Blub... Add a colon after the linenumber
2012-08-14 Wolfgang (Blub... don't add the general 'parse error' message if an error...
2012-08-14 Wolfgang (Blub... used the wrong va_list there... why didn't gcc warn...
2012-08-14 Wolfgang (Blub... Working towards a saner error-output system, adding...
2012-08-14 Wolfgang (Blub... remove now unused files
2012-08-14 Wolfgang (Blub... Merge branch 'master' into blub/parser
2012-08-14 Wolfgang (Blub... ast_binstore, used for +=, -=, ++, -- etc
2012-08-13 Wolfgang (Blub... storing generated values and returning them early if...
2012-08-13 Wolfgang (Blub... initialize ast_expression_common.outl/outr
2012-08-13 Wolfgang (Blub... prototypes for ast_binstore, and storing outl/outr...
2012-08-13 Wolfgang (Blub... while, for
2012-08-13 Wolfgang (Blub... factored out 'if' parsing code into a function, added...
2012-08-13 Wolfgang (Blub... Even more operators
2012-08-13 Wolfgang (Blub... Merge branch 'master' into blub/parser
2012-08-13 Wolfgang (Blub... type_eq_instr[], type_ne_instr[]
2012-08-13 Wolfgang (Blub... More operations
2012-08-13 Wolfgang (Blub... nicer error messages, bitand and bitor for floats allowed
2012-08-13 Wolfgang (Blub... Check types on + and - operations
2012-08-12 Wolfgang (Blub... adding missing initializer for ir_value's member array
2012-08-12 Wolfgang (Blub... after a closing paren another operator has to be expect...
2012-08-12 Wolfgang (Blub... some debug outputs which can be activated via a define...
2012-08-12 Wolfgang (Blub... return an error code at exit after compile errors
2012-08-12 Wolfgang (Blub... it's a member of entity, not of a field...
2012-08-12 Wolfgang (Blub... -std=gmqcc way to handle fields by 'namespace'
2012-08-12 Wolfgang (Blub... without -std=gmqcc fields are accessible anywhere where...
2012-08-12 Wolfgang (Blub... Recognize a dot as operator when not in 'no-ops' mode...
2012-08-12 Wolfgang (Blub... don't rewind local variables too far
2012-08-12 Wolfgang (Blub... Merge branch 'master' into blub/parser
2012-08-12 Wolfgang (Blub... print error and return NULL when trying to create an...
2012-08-12 Wolfgang (Blub... Merge branch 'master' into blub/parser
2012-08-12 Wolfgang (Blub... fixed: ast_member needs to allow type_vector instead...
2012-08-12 Wolfgang (Blub... Merge branch 'master' into blub/bc3
2012-08-12 Wolfgang (Blub... ast_binary now keeps track of types
2012-08-12 Wolfgang (Blub... ast_istype should add the TYPE_ prefix
2012-08-12 Wolfgang (Blub... fixing the messup of MUL_FV and _VF being swapped ...
2012-08-12 Wolfgang (Blub... merging master
2012-08-12 Wolfgang (Blub... default case for ir_value_dump's type switch
2012-08-12 Wolfgang (Blub... ir_instr_dump to print CALL+paramcountfor calls rather...
2012-08-12 Wolfgang (Blub... TYPE_FUNCTION in ir_value_dump to show '(function)...
2012-08-12 Wolfgang (Blub... indentation of ir debug dump functions
2012-08-12 Wolfgang (Blub... Merging master to handle vector members, fields, and...
next