Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/facebook/luaffifb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2016-04-11Port to PPC64elGustavo Serra Scalet
2016-01-24Improve parserSam Gross
2016-01-02Add support for Lua 5.3Sam Gross
2015-09-16Fix LICENSE and PATENTS fileSam Gross
2015-08-04Add Facebook LICENSE, PATENTS, and CONTRIBUTING filesSam Gross
2015-05-01Additional support for references.Sam Gross
2015-04-28Support C++ reference types.Sam Gross
2015-04-28Don't require semicolon for a single statement to match luajit.Sam Gross
2015-04-28Include line number in require_token failure.Sam Gross
2015-04-18Allow any casts and support character literal constants.Sam Gross
2013-07-29Fix a stack overflow bug introduced in 0b0f2eed4597f0b09950e97b8540dff1cd3ba115Joshua Jensen
2013-05-04Merge pull request #53 from jjensen/fix-const-typedefsJames McKaskill
2013-05-04Support 8-, 16-, and 32-bit numeric types when parsing static const valuesJoshua Jensen
2013-05-04Fix a const preservation issue when using typedefsJoshua Jensen
2012-06-05Refactor unsigned types into the signed types with an is_unsigned flagJames R. McKaskill
2012-06-05Treat variable arrays where the user hasn't specified a size as pointers (mos...James R. McKaskill
2012-05-11Off by one when copying submembers of unnamed unions.James R. McKaskill
2012-05-09Handle __attribute__((aligned))James R. McKaskill
2012-05-01Use ptrdiff_t instead of int for struct offsetsJames R. McKaskill
2012-04-30Refactor function parsing to handle functions returning function pointers.James R. McKaskill
2012-04-27Handle __asm like __asm__James R. McKaskill
2012-04-25Add partial long double support.James R. McKaskill
2012-04-25Fix handling of the ternary ? : operator in constantsJames R. McKaskill
2012-04-25Handle casts to (int) in constantsJames R. McKaskill
2012-04-25Handle multiple globals being declared with the same base typeJames R. McKaskill
2012-04-25Handle gcc's odd 'type arg[__restrict]' restricted array syntaxJames R. McKaskill
2012-04-25Add line number to max # of pointers errorJames R. McKaskill
2012-04-25Some more __extension__ cases to ignoreJames R. McKaskill
2012-04-25Ignore register keywordJames R. McKaskill
2012-04-25Add gcc mode attributeJames R. McKaskill
2012-04-25A few places got missed in split of functions and function pointersJames R. McKaskill
2012-04-25__asm__ should concat consecutive string literalsJames R. McKaskill
2012-04-25Skip over __restrictJames R. McKaskill
2012-04-25Symbol redirect is __asm__ not __asmJames R. McKaskill
2012-04-25Add __const__ and __volatile__James R. McKaskill
2012-04-25Add __int8 and __int16 specifiersJames R. McKaskill
2012-04-23Process escapes in __asm stringsJames R. McKaskill
2012-04-23Add support for exported global variables.James R. McKaskill
2012-04-23Add __alignof__ support for constants.James R. McKaskill
2012-04-22Fix enum supportJames R. McKaskill
2012-04-22Support gcc attributes with underscores eg __attribute__((__cdecl__))James R. McKaskill
2012-04-22__declspec(aligned(#)) should only increase the alignmentJames R. McKaskill
2012-04-22Fix bitfields on linux x86James R. McKaskill
2012-04-22Fix aligned attribute on GCCJames R. McKaskill
2012-04-22Refactor and fixup bitfields.James R. McKaskill
2012-04-22Add support for __asm() symbol redirectionJames R. McKaskill
2012-04-22Add support for the packed and align attributes.James R. McKaskill
2012-04-22Add support for gcc style __attribute__ and msvc style __declspec.James R. McKaskill
2012-04-22Overallocate bitfield structs to the next 8 byte boundary to stop valgrind.James R. McKaskill
2012-04-10Add support for complex numbersJames R. McKaskill