- 3351f11 allow references to the larger value in a tied constraint by Chris Lattner · 16 years ago
- a077b5c add support for tying asm operands where the result is smaller than by Chris Lattner · 16 years ago
- 50ac766 Remove typo by Daniel Dunbar · 16 years ago
- ede9d90 implement support for asm outputs targetting non-simple lvalue destinations by Chris Lattner · 16 years ago
- 4df4ee0 handle codegen of asms where a small input is tied to a large output. by Chris Lattner · 16 years ago
- fc24e44 Implement bit-field promotion rules for C99. Fixes PR3500. by Douglas Gregor · 16 years ago
- ebe9411 Add testcase that illustrates the problem from r69699 regarding tentative definitions of statics by Douglas Gregor · 16 years ago
- dd2fb9c Don't assert when we think we need copy/dispose, but don't need them. by Mike Stump · 16 years ago
- bad3a94 Don't use indirect memory destinations for inline asm. Fixes 6841383. by Anders Carlsson · 16 years ago
- 944af71 Fix for PR4108: be a bit looser with the casts that we accept in by Eli Friedman · 16 years ago
- 4d150c8 only support int128_t on 64-bit and larger targets. 32-bit targets don't by Chris Lattner · 16 years ago
- 2df9ced initial support for __[u]int128_t, which should be basically by Chris Lattner · 16 years ago
- 9f9bf25 Improve compatibility with GCC regarding inline semantics in GNU89 by Douglas Gregor · 16 years ago
- eb32fde Simplify the scheme used for keywords, and change the classification by Eli Friedman · 16 years ago
- 8e03444 x86-32 ABI: Fix crash on return of structure with flexible array member. by Daniel Dunbar · 16 years ago
- cabec03 When calling the cleanup function specified by __attribute__((cleanup)), make sure to bitcast the argument so it has the same type as the first argument of the cleanup function. Fixes <rdar://problem/6827047>. by Anders Carlsson · 16 years ago
- 6545994 fix PR4067: [Linux kernel] cannot aggregate codegen stmtexpr as lvalue by Chris Lattner · 16 years ago
- b3efa98 Fix handling of C99 "extern inline" semantics when dealing with by Douglas Gregor · 16 years ago
- 87de649 Handle corner case where clang-cc is invoked directly to compile preprocessed source file without -main-file-name. In this case, CDDebugInfo is not able identify correct main source file becase SM.isFromMainFile() returns true for locations from header files as well as locations from main source file. by Devang Patel · 16 years ago
- d55a71d Fix some mishandling of the attr(gnu_inline) mode when used with by Chris Lattner · 16 years ago
- f0a990c fix PR4026: Clang can't codegen __func__ without implicit cast by Chris Lattner · 16 years ago
- f1c97eb use of predefined identifiers like __func__ at global scope warn in sema, by Chris Lattner · 16 years ago
- cf2a721 the __gnuc_inline__ attribute is actually named __gnu_inline__, PR4023 by Chris Lattner · 16 years ago
- 5994d31 Add test case to check line number in debug info. by Devang Patel · 16 years ago
- c62aad8 PR3247: Handle a couple of cases where we weren't emitting VLA sizes (and by Eli Friedman · 16 years ago
- 8f426fa PR3248: Make sure the evaluate the operand of a sizeof when it has a VLA type. by Eli Friedman · 16 years ago
- 4fb71b0 Print an error for uses of __thread on targets which don't support it. by Eli Friedman · 16 years ago
- 56ebe50 PR3853: Add CodeGen support for __thread. by Eli Friedman · 16 years ago
- f29c8ad fix incorrect lowering of __builtin_ia32_shufpd, rdar://6803924 by Chris Lattner · 16 years ago
- bb6f78b rename file. by Chris Lattner · 16 years ago
- 10044cb don't dump .ll file in this dir. by Chris Lattner · 16 years ago
- 0e4f40e Attributes on block functions were not being set. by Daniel Dunbar · 16 years ago
- 6463ef4 Ensure that the most recent declaration of a tentative definition wins by Daniel Dunbar · 16 years ago
- 03f5ad9 Defer generation of tentative definitions. - PR3980. by Daniel Dunbar · 16 years ago
- 963dfbd Set DebugInfo at the beginning of GenerateBlockFunction(). by Devang Patel · 16 years ago
- 372de1d remove #include of system header, making this a) not apple specific, and by Chris Lattner · 16 years ago
- cbb8fc1 Fix PR3988: extern inline functions get strong symbol definitions in by Chris Lattner · 16 years ago
- 86daeee implement codegen support for __attribute((__gnuc_inline__)), by Chris Lattner · 16 years ago
- dbb5a37 defer emission of always_inline, extern_inline, and inline functions (when by Chris Lattner · 16 years ago
- d9d049a set the linkage of an inline function according to its language rules. by Chris Lattner · 16 years ago
- ab76d45 Fix crasher in ASTContext::getObjCEncodingForMethodDecl(). by Steve Naroff · 16 years ago
- aa4a756 Fixed crasher in <rdar://problem/6780904> [irgen] Assertion failed: (Result == conversionOK && "UTF-8 to UTF-16 conversion failed"), function GetAddrOfConstantCFString, file CodeGenModule.cpp, line 1063. by Steve Naroff · 16 years ago
- 273cd42 pass -fblocks by Chris Lattner · 16 years ago
- 140fb26 Fixes a ir-gen crash for K&R style blocks. by Fariborz Jahanian · 16 years ago
- 64c2e07 Don't set both readnone and readonly. by Daniel Dunbar · 16 years ago
- 7e714cd Internal variables could mistakenly have "hidden" visibility when by Daniel Dunbar · 16 years ago
- b7477cf Fixup codegen for nested blocks that use copy/dispose in the inner by Mike Stump · 16 years ago
- 7a0048b Add more builtin definitions, including strcmp. - PR3964. by Daniel Dunbar · 16 years ago
- a17d7cc Don't assume that a block always has a FunctionProtoType. Fixes rdar://6768379. by Anders Carlsson · 16 years ago
- 03abc9e Visibility attributes should only be set on definition. by Daniel Dunbar · 16 years ago
- 85a5319 Diagnose uses of function specifiers on declarations which don't declare by Eli Friedman · 16 years ago
- 0002d23 Implement __sync_{add,sub,and,or,xor}_and_fetch and by Daniel Dunbar · 16 years ago
- 980d60a Testcase for regparm codegen by Anton Korobeynikov · 16 years ago
- ec91dab Ignore plus operands when looking up the operand number from a named operand. This matches llvm-gcc and fixes PR3908. by Anders Carlsson · 16 years ago
- 7cd2e93 Implement -fvisibility. by Fariborz Jahanian · 16 years ago
- a9668e0 Add target hook for setting symbol prefix and section of unicode by Daniel Dunbar · 16 years ago
- 035cf89 Remove -ftrapu. by Mike Stump · 16 years ago
- 947b3e2 Oops, almost forgot the testcases. by Mike Stump · 16 years ago
- cf6bde3 x86-32 Darwin ABI: Handle small structures correctly. by Daniel Dunbar · 16 years ago
- dfc6b80 x86-32 Darwin ABI: Single element arrays can be part of "single by Daniel Dunbar · 16 years ago
- 3604316 x86-32 Darwin ABI: Handle direct return of vectors. by Daniel Dunbar · 16 years ago
- aa5bd87 Fix a subtle bug where the cleanup scope entries had a dangling block reference by Daniel Dunbar · 16 years ago
- 57d7dde Fix pascal string support; testcase from mailing list message. by Eli Friedman · 16 years ago
- 8e5c2b8 Add Target hooks for IRgen of [cf]string literals. by Daniel Dunbar · 16 years ago
- 35f38a2 Change UsedArray to be a vector of WeakVH to fix a dangling pointer problem that occurs when by Chris Lattner · 16 years ago
- 5bde6f4 x86_32 Darwin ABI: Treat empty unions like empty structures. by Daniel Dunbar · 16 years ago
- d013aa1 Codegen sometimes crashes on comparisons that aren't legal, just by Chris Lattner · 16 years ago
- 48f9122 Move where block-related variables are initialized so that block by Eli Friedman · 16 years ago
- 3ded200 Fix silly mistake in test. by Eli Friedman · 16 years ago
- daa24a2 Misc small fixes/cleanups/comment changes. by Eli Friedman · 16 years ago
- ab3a852 Change compound assignment operators to keep track of both the promoted by Eli Friedman · 16 years ago
- 68c56de Fix <rdar://problem/6724396>, where we were silently dropping by Douglas Gregor · 16 years ago
- 069afd5 Driver: Forward -fno-common to clang. by Daniel Dunbar · 16 years ago
- bbf4623 Fix for PR3869: actually enforce that the argument of an indirect goto by Eli Friedman · 16 years ago
- 4927abd Remove -f__block as codegen for __block variables should be solid. by Mike Stump · 16 years ago
- a803b0e Fixup codegen for block literals that bleed copy/dispose information by Mike Stump · 16 years ago
- 9034558 Support member reference on ?: of struct type. by Daniel Dunbar · 16 years ago
- d7d5f02 Rename clang to clang-cc. by Daniel Dunbar · 16 years ago
- f94e215 Use not instead of ! in tests. by Daniel Dunbar · 16 years ago
- ff59a8a Fix a couple of tests. by Eli Friedman · 16 years ago
- f52bbeb Fix a subtle bug in CodeGen for the increment of a bitfield. by Eli Friedman · 16 years ago
- b808c95 switch getBuiltinLibFunction to use the new GetOrCreateLLVMFunction by Chris Lattner · 16 years ago
- 35f6c13 make alias definition logic more similar to functions/globals. by Chris Lattner · 16 years ago
- 82227ff fix PR3200 by making alias emission use the new infrastructure. Fold by Chris Lattner · 16 years ago
- ff75e1d fix a fixme: non-proto struct returning function definitions should be compiled by Chris Lattner · 16 years ago
- a8b60c9 Fixup codegen for nested block literals so that we generate by Mike Stump · 16 years ago
- 0558e79 fix a crash that could occur when a variable declaration became a by Chris Lattner · 16 years ago
- 570585c simplify and cleanup global variable creation stuff to all go through one by Chris Lattner · 16 years ago
- ca3f25c fix several problems with asm renaming, by pulling it into the mangling code: by Chris Lattner · 16 years ago
- a645796 Allow flexible array initializers that are not surrounded by by Douglas Gregor · 16 years ago
- 5e1e1f9 IRgen support for alias of global variable. - PR3818. by Daniel Dunbar · 16 years ago
- 0ac86f0 PR3835: Interaction with ABI structure passing can inhibit by Daniel Dunbar · 16 years ago
- 40f9292 fix the more complex cases by actually codegen'ing the right expr :) by Chris Lattner · 16 years ago
- 75dfeda add codegen support for casting an element to a union. by Chris Lattner · 16 years ago
- f8575aa Add codegen support for aggregate BlockDeclRefExprs. by Mike Stump · 16 years ago
- 8cc9d08 fix PR3809, codegen for inc/dec of function pointers. by Chris Lattner · 16 years ago
- c3953a6 teach codegen to handle noop casts as lvalues. by Chris Lattner · 16 years ago
- e7783ab Fix failing test case. by Anders Carlsson · 16 years ago
- 0ae7b2b Initialize the cleanup.dst variable if necessary. Fixes PR3789. by Anders Carlsson · 16 years ago
- 4598ffa We want to grep the output, not the input :-) by Anders Carlsson · 16 years ago