| Commit message (Expand) | Author | Age | Files | Lines |
* | Add new test | Nate Begeman | 2008-03-07 | 1 | -0/+10 |
* | Patch by Nuno Lopes: | Ted Kremenek | 2008-03-07 | 1 | -0/+16 |
* | remove two obsolete tests, not sure why my previous commit didn't commit the ... | Chris Lattner | 2008-03-06 | 2 | -54/+0 |
* | Remove the first layer of support for "portability" warnings. This is | Chris Lattner | 2008-03-05 | 1 | -5/+0 |
* | The operand to the visibility attribute is required to be a quoted string, no... | Chris Lattner | 2008-03-04 | 1 | -2/+2 |
* | move deprecated -> attributes.c | Chris Lattner | 2008-03-03 | 1 | -25/+0 |
* | The attribute nothrow maps to llvm attribute nounwind. Fix testcase. | Gabor Greif | 2008-03-03 | 1 | -1/+1 |
* | Chris added this testcase with r47837. The mail only shows one todo-warning b... | Gabor Greif | 2008-03-03 | 1 | -2/+2 |
* | fix codegen support for functions that are nothrow and noreturn. | Chris Lattner | 2008-03-03 | 1 | -0/+5 |
* | Add a bunch of attributes, patch by Nuno Lopes. | Chris Lattner | 2008-03-03 | 2 | -0/+46 |
* | Fix http://llvm.org/bugs/show_bug.cgi?id=2103. | Steve Naroff | 2008-02-29 | 1 | -1/+14 |
* | Fix http://llvm.org/bugs/show_bug.cgi?id=2106. | Steve Naroff | 2008-02-29 | 1 | -0/+4 |
* | testcase for attr deprecated, by Nuno Lopes. | Chris Lattner | 2008-02-29 | 1 | -0/+25 |
* | Implement codegen for the following static var init. | Lauro Ramos Venancio | 2008-02-26 | 1 | -1/+6 |
* | Fix a bug in ConvertAsmString function. | Lauro Ramos Venancio | 2008-02-26 | 1 | -0/+6 |
* | Convert x86 target specific inline asm constraints to LLVM. | Lauro Ramos Venancio | 2008-02-26 | 1 | -0/+15 |
* | Fix PR2086. | Lauro Ramos Venancio | 2008-02-25 | 2 | -0/+17 |
* | Fix PR2090, a typo in digraph processing. | Chris Lattner | 2008-02-24 | 1 | -0/+15 |
* | add a test case | Nate Begeman | 2008-02-21 | 1 | -0/+7 |
* | Some const initializer tests for stuff I just committed. | Eli Friedman | 2008-02-21 | 1 | -0/+13 |
* | implement codegen support for sizeof(void), fixing PR2080. | Chris Lattner | 2008-02-21 | 1 | -0/+11 |
* | add some semantic checks for address spaces. | Chris Lattner | 2008-02-21 | 1 | -0/+15 |
* | Simplify aggregate initilizer implementation. Use the CodeGenModule::EmitCons... | Lauro Ramos Venancio | 2008-02-19 | 1 | -0/+1 |
* | fix the second half of PR2041: __restrict is ok in c90 mode, even if | Chris Lattner | 2008-02-19 | 1 | -1/+1 |
* | A global without initializer must be emitted as weak. | Lauro Ramos Venancio | 2008-02-19 | 1 | -0/+3 |
* | Implement multi-dimension array initalizer. | Lauro Ramos Venancio | 2008-02-18 | 1 | -5/+12 |
* | Tweak fix for http://llvm.org/bugs/show_bug.cgi?id=2000 to work across typedefs. | Steve Naroff | 2008-02-18 | 1 | -0/+10 |
* | Fix PR2042. One remaining issue: we don't currently diagnose | Chris Lattner | 2008-02-17 | 3 | -2/+8 |
* | Implemnt isVariablyModifiedType correctly. | Eli Friedman | 2008-02-17 | 1 | -0/+3 |
* | implement codegen support for aggregates casted to void. | Chris Lattner | 2008-02-16 | 1 | -1/+6 |
* | Implement extern block var. | Lauro Ramos Venancio | 2008-02-16 | 1 | -0/+6 |
* | Add more tests | Anders Carlsson | 2008-02-16 | 1 | -8/+35 |
* | Fix CheckEndOfDirective to diagnose lines that contain macros that expand to | Chris Lattner | 2008-02-16 | 1 | -0/+5 |
* | Make sizeof and __alignof work correctly with packed structs. | Anders Carlsson | 2008-02-16 | 1 | -0/+37 |
* | Fix PR2041: restrict is not a keyword in c90. | Chris Lattner | 2008-02-15 | 1 | -0/+3 |
* | Get rid of outdated code that masks type errors. Fixes PR2036. | Eli Friedman | 2008-02-15 | 1 | -0/+2 |
* | Nevermind, these tests work... I messed up my testing. | Eli Friedman | 2008-02-15 | 1 | -4/+2 |
* | Partial fix for struct compatibility; there's still something messy | Eli Friedman | 2008-02-15 | 1 | -0/+19 |
* | A much better fix for http://llvm.org/bugs/show_bug.cgi?id=1987. | Steve Naroff | 2008-02-14 | 1 | -3/+7 |
* | Fix a minor bug in isNullPointerConstant triggered by the linux | Eli Friedman | 2008-02-13 | 1 | -0/+3 |
* | Make typechecking for enum+int compatibility stricter. | Eli Friedman | 2008-02-12 | 1 | -0/+4 |
* | Fix type compatibility between constant and variable arrays. | Eli Friedman | 2008-02-12 | 1 | -0/+5 |
* | Allow the parser to detect invalid DeclSpec's. This fixes http://llvm.org/bug... | Steve Naroff | 2008-02-12 | 1 | -1/+5 |
* | Get rid of bogus warnings when the second argument in va_start is either an i... | Anders Carlsson | 2008-02-11 | 1 | -0/+8 |
* | Tweak test... | Steve Naroff | 2008-02-11 | 1 | -1/+0 |
* | Fix http://llvm.org/bugs/show_bug.cgi?id=1988. | Steve Naroff | 2008-02-11 | 1 | -0/+27 |
* | Fix PR1992 by computing the right type for string literals, which | Chris Lattner | 2008-02-11 | 4 | -8/+18 |
* | Basic codegen test for conditional with void*. | Eli Friedman | 2008-02-10 | 1 | -0/+6 |
* | Add a couple of sema tests for qualifiers with conditionals containing | Eli Friedman | 2008-02-10 | 1 | -0/+4 |
* | Fix PR1999, by emitting a hard error only if an argument declarator is comple... | Chris Lattner | 2008-02-10 | 3 | -7/+10 |