- eb62bc7 Merge i*.h headers into Instructions.h as part of bug403. by Alkis Evlogimenos · 21 years ago
- 8d65a06 Fix bug in previous patch :( by Chris Lattner · 21 years ago
- badf091 Fix an extremely serious regression that was causing LLVM basic blocks to be by Chris Lattner · 21 years ago
- feaf10e Adjust to new Module.h interface for dependent libraries by Reid Spencer · 21 years ago
- 0be13e7 bug 263: Provide parsing for the target triple and dependent libraries. by Reid Spencer · 21 years ago
- 3271ed5 bug 122: by Reid Spencer · 21 years ago
- a2d4b3c Fix the regressions handling unnamed global variables by Chris Lattner · 21 years ago
- 0f01bbc This is logically part of the last patch. Just more really horrible code by Chris Lattner · 21 years ago
- a09000d ** Finally DeclareNewGlobalValue is dead! by Chris Lattner · 21 years ago
- 8a32784 * Fairly substantial change. Instead of creating new globalvariables, then by Chris Lattner · 21 years ago
- cb9d6a8 Fold setValueNameMergingDuplicates into ParseGlobalVariable, allowing us by Chris Lattner · 21 years ago
- d9ce6ad Fix a regression from last night. Apparently the CFE is broken and outputs by Chris Lattner · 21 years ago
- d88998d Pull out code shared between GV forward-decl and definition processing. by Chris Lattner · 21 years ago
- 66028f2 Simplify code. Do not allow functions to be redefined more than once. by Chris Lattner · 21 years ago
- e002694 Remove a gross and crufty "feature" that was never documented and doesn't work. by Chris Lattner · 21 years ago
- 8642763 Finegrainify namespacification by Chris Lattner · 21 years ago
- 2e2ed29 Revamp handling of labels. In particular, if we create a forward reference by Chris Lattner · 21 years ago
- 64116f9 Split the basic block handling case out of getVal into getBBVal. by Chris Lattner · 21 years ago
- 22ae232 Fix typeo and refactor bb productions to make it possible for us to reuse any by Chris Lattner · 21 years ago
- bc721ed Eliminate some mega-cruft here. There is no reason to DERIVE FROM IR CLASSES by Chris Lattner · 21 years ago
- c9aea52 Inline the now trivial setValueNameInternal function into both callers by Chris Lattner · 21 years ago
- 8c89a0a Now that basic blocks are eagerly inserted into the Function, we can use by Chris Lattner · 21 years ago
- 8ab406d A couple of substantial cleanup fixes: by Chris Lattner · 21 years ago
- 38ab6bf Replace a bunch of complex ConstantPointerRef referring code with simple code. by Chris Lattner · 21 years ago
- 8ca2dc0 Don't call Type::setName() by Chris Lattner · 21 years ago
- 735f270 Eliminate uses of the UniqueID field on Type objects by Chris Lattner · 21 years ago
- 8ce1da7 - remove use of isa<Type>(Val) since there's no inheritance relationship by Reid Spencer · 21 years ago
- f70c22b Rename Type::PrimitiveID to TypeId and ::getPrimitiveID() to ::getTypeID() by Chris Lattner · 21 years ago
- 4e6620c Remove some more dead code resulting from adding setTypeName(). by Reid Spencer · 21 years ago
- 9ed0f17 Remove an assertion that uses Type::TypeTy that is never hit and will by Reid Spencer · 21 years ago
- 75719bf Provide the correct patch for bug 345. The solution is to add a setTypeName by Reid Spencer · 21 years ago
- 42fbc7e A quick and ugly hack to fix PR345. I used TypeTy specifically to make by Chris Lattner · 21 years ago
- b152f9f Changed to use SymbolTable's new lookup interface. by Reid Spencer · 21 years ago
- f57a43d Fix a memory leak. We leaked the vector holding the entries in switch tables. by Chris Lattner · 21 years ago
- 830b6f9 Support getelementptr instructions which use uint's to index into structure by Chris Lattner · 21 years ago
- 91ef460 Avoid TRUE and FALSE which apparently conflict with some macros on OSX by Chris Lattner · 21 years ago
- bc280ab Fix bug: Assembler/2004-03-30-UnclosedFunctionCrash.llx by Chris Lattner · 21 years ago
- 76f0ff3 Allow parsing select instruction and constant expr by Chris Lattner · 21 years ago
- 63a2250 Insert functions into the module promptly, not lazily. This fixes a bug by Chris Lattner · 21 years ago
- bc20759 Eliminate a REALLY HORRIBLE API: mutateReferences, which is gross gross gross. by Chris Lattner · 21 years ago
- 16af11d It turns out that the two dimensional vectors were causing big slowdowns by Chris Lattner · 22 years ago
- 026a8ce When resolving upreferences, if multiple uprefs will be resolved to the same by Chris Lattner · 22 years ago
- d21cd80 Adjust to the changed StructType interface. In particular, getElementTypes() is gone. by Chris Lattner · 22 years ago
- d5d8996 Start using the new and improve interface to FunctionType arguments by Chris Lattner · 22 years ago
- bcb6afb This #include is not needed, it should have been removed with the last patch by Chris Lattner · 22 years ago
- 3b07386 Instead of searching the entire type graph for a type to determine if it by Chris Lattner · 22 years ago
- 2c37c18 Upreferences are always OpaqueTypes, meaning that it is impossible for a non-abstract by Chris Lattner · 22 years ago
- a58e3a1 Change the 'exception' destination to the 'unwind' destination. We will always by Chris Lattner · 22 years ago
- b16689b Don't use ConstantExpr::getShift anymore by Chris Lattner · 22 years ago
- c7d3f6b Minor code cleanups. The only bugfix is to the UR_DEBUG stuff which didn't by Chris Lattner · 22 years ago
- 9cd4257 Right, fix the problem with invoke instructions, not just call instructions by Chris Lattner · 22 years ago
- f64d57a Do not delete the type holder until after the call instruction has been by Chris Lattner · 22 years ago
- a989b23 Minor cleanups, plug a minor memory leak by Chris Lattner · 22 years ago
- 4257098 To not barf when an error occurs. by Chris Lattner · 22 years ago
- 0b268fb Fix PR147 by Chris Lattner · 22 years ago
- c282f5a Check return types of functions by Chris Lattner · 22 years ago
- ae711a8 Don't crash on bogus source value by Chris Lattner · 22 years ago
- 15b6972 Fix bug PR107, patch contributed by Reid Spencer! by Chris Lattner · 22 years ago
- d0fde30 Put all LLVM code into the llvm namespace, as per bug 109. by Brian Gaeke · 22 years ago
- 8ea8f36 Make sure that PHI node operands are first class types by Chris Lattner · 22 years ago
- 856ba76 Added LLVM copyright header. by John Criswell · 22 years ago
- 3b237fc Change the Opcode enum for PHI nodes from "Instruction::PHINode" to "Instruction::PHI" to be more consistent with the other instructions. by Chris Lattner · 22 years ago
- 99e7ab7 New revised variable argument handling support by Chris Lattner · 22 years ago
- 888d3bc Tighten up handling of checks for shift instructions by Chris Lattner · 22 years ago
- 394f2eb Minor cleanups by Chris Lattner · 22 years ago
- 72ac148d Add support for 'weak' linkage. by Chris Lattner · 22 years ago
- fd05924 Decrease usage of use_size() by Chris Lattner · 22 years ago
- cf3056d Regularize header file comments by Chris Lattner · 22 years ago
- bd2531f Reserve space for PHI operands by Chris Lattner · 22 years ago
- f797cab Accept 'weak' as a linkage type. For now, just turn it into linkonce linkage by Chris Lattner · 22 years ago
- 0f3bc5e Add better checking by Chris Lattner · 22 years ago
- 876dc57 The objects mapped are really PATypeHolders, not PATypeHandles by Chris Lattner · 22 years ago
- 79ad1380 Oops, look at the VOLATILE marker, not the opcode by Chris Lattner · 22 years ago
- 36143fc Add support for the unwind instruction by Chris Lattner · 22 years ago
- 15c9c03 Parse volatile loads/stores by Chris Lattner · 22 years ago
- 8c8418d Remove gross old hacky code that was in there for backwards compatibility by Chris Lattner · 22 years ago
- 4354f56 Rename SwitchInst::dest_push_back -> addCase by Chris Lattner · 22 years ago
- 6c23f57 Accept double quoted strings everwhere we accept a %ABC variable name. by Chris Lattner · 22 years ago
- 5560c9d Spell `necessary' correctly. by Misha Brukman · 22 years ago
- 949a362 Remove redundant const qualifiers from cast<> expressions by Chris Lattner · 22 years ago
- bc0e998 The word `separate' only has one `e'. by Misha Brukman · 22 years ago
- f460048 Add support for a new zeroinitializer token which can be used to get rid of by Chris Lattner · 22 years ago
- 893f025 Detemplatize the PATypeHandle class, which was only really instantiated on 'Type'. by Chris Lattner · 22 years ago
- 5e458e2 Fix bugs: by Chris Lattner · 22 years ago
- c6212f1 Fix bugs: by Chris Lattner · 22 years ago
- 196850c Fix bug: Assembler/2003-05-15-SwitchBug.ll by Chris Lattner · 22 years ago
- 8f77dae Add support for the new va_arg instruction by Chris Lattner · 22 years ago
- b8fdd8b Fix bug: Assembler/2003-04-25-UnresolvedGlobalReference.ll by Chris Lattner · 22 years ago
- b9bcbb5 Allow information about the target to be specified in the .ll file by Chris Lattner · 22 years ago
- 9232b99 Namespacify by Chris Lattner · 22 years ago
- 75f2053 Preserve module source information in the ModuleID by Chris Lattner · 22 years ago
- 4ad02e7 Add new linkage types to support a real frontend by Chris Lattner · 22 years ago
- 1f862af Don't allow declaring an external internal variable by Chris Lattner · 22 years ago
- af76d0e Fix bug: Assember2003-04-15-ConstantInitAssertion.llx by Chris Lattner · 22 years ago
- adf9970 Fix bug: Assembler/2003-03-03-DuplicateConstant.ll by Chris Lattner · 22 years ago
- bb3e5d4 Fix bug: Assembler/2003-02-02-ConstGlobal.ll by Chris Lattner · 23 years ago
- bae362f Fix bug: Assembler/2003-01-30-UnsignedString.ll by Chris Lattner · 23 years ago
- 6e6026b - Eliminated the deferred symbol table stuff in Module & Function, it really by Chris Lattner · 23 years ago
- bf0a37b - Fix bug: Assembler/2002-10-15-NameClash.ll by Chris Lattner · 23 years ago
- 9e932bd This loop executed exactly one time, turn it into straightline code by Chris Lattner · 23 years ago