- dd8004d Add a new keyword 'inbounds' for use with getelementptr. See the by Dan Gohman · 16 years ago
- 6f83c9c Move ConstantFP construction back to the 2.5-ish API. by Owen Anderson · 16 years ago
- 59858cf Change the assembly syntax for nsw, nuw, and exact, putting them by Dan Gohman · 16 years ago
- 30d3b91 Test commit: fix typo by Benjamin Kramer · 16 years ago
- 92ccf70 Finish migrating VMCore to StringRef/Twine based APIs. by Daniel Dunbar · 16 years ago
- a3500da Move ExtractElementInst to ::Create instead of new. Update all uses. by Eric Christopher · 16 years ago
- eed707b Revert the ConstantInt constructors back to their 2.5 forms where possible, thanks to contexts-on-types. More to come. by Owen Anderson · 16 years ago
- 4e9bac3 Fix assert assembling zero-argument constant GEP. by Eli Friedman · 16 years ago
- 2f9c3b0 MDString by Devang Patel · 16 years ago
- db5e900 Silence "uninitialized use" warning. by Devang Patel · 16 years ago
- 104cf9e Derive MDNode from MetadataBase instead of Constant. Emit MDNodes into METADATA_BLOCK in bitcode file. by Devang Patel · 16 years ago
- 0aaf4e9 Fix error message for correct opcode. by Eric Christopher · 16 years ago
- 08d012e Rename the new unsigned and signed keywords to nuw and nsw, by Dan Gohman · 16 years ago
- e54abc9 Introduce MetadataBase, a base class for MDString and MDNode. by Devang Patel · 16 years ago
- b3056fa Rename getConstantInt{True|False} to get{True|False} at Chris' behest. by Owen Anderson · 16 years ago
- 1224c38 Assembly and Bitcode support for unsigned/signed overflow flags and by Dan Gohman · 16 years ago
- 256be96 Refactor metadata parsing routines into separate functions. by Devang Patel · 16 years ago
- 3d10a5a Add plumbing for the `linker_private' linkage type. This type is meant for by Bill Wendling · 16 years ago
- c5ec8a7 Add support for naked functions by Anton Korobeynikov · 16 years ago
- 50dead0 Revert yesterday's change by removing the LLVMContext parameter to AllocaInst and MallocInst. by Owen Anderson · 16 years ago
- 9adc0ab Move EVER MORE stuff over to LLVMContext. by Owen Anderson · 16 years ago
- c23197a llvm_unreachable->llvm_unreachable(0), LLVM_UNREACHABLE->llvm_unreachable. by Torok Edwin · 16 years ago
- c25e758 assert(0) -> LLVM_UNREACHABLE. by Torok Edwin · 16 years ago
- 333c400 This started as a small change, I swear. Unfortunately, lots of things call the [I|F]CmpInst constructors. Who knew!? by Owen Anderson · 16 years ago
- d109540 Fix thinko. by Devang Patel · 16 years ago
- 2214c94 Drop "constant" from !0 = constant metadata !{...} by Devang Patel · 16 years ago
- 1c7eea6 by Devang Patel · 16 years ago
- e9b11b4 Switch GlobalVariable ctors to a sane API, where *either* a context or a module is required. by Owen Anderson · 16 years ago
- 7f6aa2b Remove the vicmp and vfcmp instructions. Because we never had a release with by Nick Lewycky · 16 years ago
- 3d29df3 Push LLVMContext through GlobalVariables and IRBuilder. by Owen Anderson · 16 years ago
- ff6c91e Use LLVMContext in the LLLexer. by Owen Anderson · 16 years ago
- eeb4a84 switch the .ll parser to use SourceMgr. by Chris Lattner · 16 years ago
- 92bcb42 switch the .ll parser into SMDiagnostic. by Chris Lattner · 16 years ago
- 12c99d8 Use LLVMContext for generating MDStrings too. by Owen Anderson · 16 years ago
- e951bdf Use LLVMContext to generate metadata constants. by Owen Anderson · 16 years ago
- b43eae7 Use LLVMContext for generating UndefValue constants too! by Owen Anderson · 16 years ago
- fba933c Try again at converting the LLParser to use LLVMContext, without massive breakage this time. by Owen Anderson · 16 years ago
- 4434ed4 Make the use of const with respect to LLVMContext sane. Hopefully this is the last time, for the by Owen Anderson · 16 years ago
- aa3943b --- Reverse-merging (from foreign repository) r74648 into '.': by Bill Wendling · 16 years ago
- c137ea6 Convert LLParser to use LLVMContext for creating constants. by Owen Anderson · 16 years ago
- 31895e7 Hold the LLVMContext by reference rather than by pointer. by Owen Anderson · 16 years ago
- 923078c Support stand alone metadata syntax. by Devang Patel · 16 years ago
- 8b477ed Add a pointer to the owning LLVMContext to Module. This requires threading LLVMContext through a lot by Owen Anderson · 16 years ago
- 0fd3806 improve the APIs for creating struct and function types with no arguments/elements by Chris Lattner · 16 years ago
- 385f5a9 Address review comments: add 3 ARM calling conventions. by Anton Korobeynikov · 16 years ago
- 24b108b Fix a typo in a diagnostic. by Dan Gohman · 16 years ago
- a119de8 Fix old-style type names in comments. by Dan Gohman · 16 years ago
- a5f54a0 Create FunctionType::isValidArgumentType to go along with isValidReturnType. by Nick Lewycky · 16 years ago
- 00907c7 Refuse metadata* type for function arguments. by Nick Lewycky · 16 years ago
- 578efa9 Add new function attribute - noimplicitfloat by Devang Patel · 16 years ago
- ae3a0be Split the Add, Sub, and Mul instruction opcodes into separate by Dan Gohman · 16 years ago
- d18e31a Add new function attribute - noredzone. by Devang Patel · 16 years ago
- 7a0370f Give embedded metadata its own type instead of relying on EmptyStructTy. by Nick Lewycky · 16 years ago
- e3e51c0 Use v.data() instead of &v[0] when SmallVector v might be empty. by Jay Foad · 16 years ago
- cb33799 Make MDNode use CallbackVH. Also change MDNode to store Value* instead of by Nick Lewycky · 16 years ago
- 040f758 testcase and asmparser fix for PR4066 by Chris Lattner · 16 years ago
- 55f64db Fix warning in .ll parser, detect and reject available_externally on function by Nick Lewycky · 16 years ago
- 266c7bb Add a new "available_externally" linkage type. This is intended by Chris Lattner · 16 years ago
- 21cc446 Add support for embedded metadata to LLVM. This introduces two new types of by Nick Lewycky · 16 years ago
- ad9ad7c Fix a bug in our autoupgrade support: in an argument list to a function by Chris Lattner · 16 years ago
- 1b25cb2 Fix internal representation of fp80 to be the by Dale Johannesen · 16 years ago
- 4dc2b39 It makes no sense to have a ODR version of common linkage, so remove it. by Duncan Sands · 16 years ago
- 5f4ee1f Remove the one-definition-rule version of extern_weak by Duncan Sands · 16 years ago
- a9a9e07 Fix two classes of bugs. First: by Chris Lattner · 16 years ago
- 667d4b8 Introduce new linkage types linkonce_odr, weak_odr, common_odr by Duncan Sands · 16 years ago
- f6f0bdf Fix a pretty awesome bug that only happened in a strange case with anonymous by Chris Lattner · 16 years ago
- 452e262 reject 0 element vectors with: by Chris Lattner · 16 years ago
- f570e62 add proper asmwriter and asmparser support for anonymous functions. by Chris Lattner · 16 years ago
- 35b5107 Pacify gcc-4.3 (thinks IsConstant may be used uninitialized). by Duncan Sands · 17 years ago
- b9070d3 Use slightly more correct grammar in error messages. by Dan Gohman · 17 years ago
- 4a2f112 fix typo by Chris Lattner · 17 years ago
- b4bd16f reject void pointers with a nice error: by Chris Lattner · 17 years ago
- 49de982 Reapply 63765. Patches for clang and llvm-gcc to follow. by Dale Johannesen · 17 years ago
- 4d452de Reverting 63765. This broke the build of both clang and llvm-gcc. by Dale Johannesen · 17 years ago
- d244797 New feature: add support for target intrinsics being defined in the by Nate Begeman · 17 years ago
- 91dad87 Fix PR3372 by Chris Lattner · 17 years ago
- bb46f52 Add the private linkage. by Rafael Espindola · 17 years ago
- 9b8f542 Removed trailing whitespace from Makefiles. by Misha Brukman · 17 years ago
- 24c047f 61949 accidentally introduced an escaped newline. Fix this by making by Dan Gohman · 17 years ago
- 069f12a Fix the comment for lltok::backslash. by Dan Gohman · 17 years ago
- 5d13665 Fix the path to llvm/Assembly/Parser.h in a comment. by Dan Gohman · 17 years ago
- 1e407c3 one more crash from PR3281, we now diagnose: by Chris Lattner · 17 years ago
- 0d8484f fix wordo by Chris Lattner · 17 years ago
- b0adcdb Remove redundant ValID::ValID:: scoping (doesn't compile on Windows). by Steve Naroff · 17 years ago
- dfd19dd Reject PR3281:accepted03.ll with: by Chris Lattner · 17 years ago
- 830703b reject PR3281:crash11.ll with: by Chris Lattner · 17 years ago
- 959873d reject PR3281:crash10.ll with: by Chris Lattner · 17 years ago
- c38daba reject PR3281:crash09.ll with this diagnostic: by Chris Lattner · 17 years ago
- 0b61635 allow opaque undefs. This resolves PR3282 and fixes by Chris Lattner · 17 years ago
- d68a076 Tidy up #includes, deleting a bunch of unnecessary #includes. by Dan Gohman · 17 years ago
- d0f9c73 produce the same diagnostics for vicmp constant exprs as vicmp instructions. by Chris Lattner · 17 years ago
- e914b59 Fix PR3281:crash08.ll with this diagnostic: by Chris Lattner · 17 years ago
- 0088a5c reject PR3281:crash07.ll with: by Chris Lattner · 17 years ago
- e67c1aa reject undef/zero labels. This fixes PR3281:crash0[56].ll with these by Chris Lattner · 17 years ago
- 4a1c4a4 add checking intentionally elided for vfcmp/vicmp since they should really by Chris Lattner · 17 years ago
- d77d04c diagnose PR3281:crash02.ll with: by Chris Lattner · 17 years ago
- 99bb315 reject PR3281:crash01.ll with: by Chris Lattner · 17 years ago
- 081b505 fix PR3281:accepted0[02].ll: represent empty arrays distinctly, and by Chris Lattner · 17 years ago
- 3fbb3ab PR3281:crash00.ll: produce this diagnostic instead of crashing: by Chris Lattner · 17 years ago
- ad7d1e2 Refactor some parser interfaces to fix PR3278 and a FIXME: by Chris Lattner · 17 years ago