summaryrefslogtreecommitdiff
path: root/unittests/IR/IRBuilderTest.cpp
AgeCommit message (Expand)Author
2017-11-06[IR] redefine 'UnsafeAlgebra' / 'reassoc' fast-math-flags and add 'trans' fas...Sanjay Patel
2017-07-19Debug Info: Add a file: field to DIImportedEntity.Adrian Prantl
2017-06-06Re-sort #include lines for unittests. This uses a slightly modifiedChandler Carruth
2017-04-26Add support for DW_TAG_thrown_type.Adrian Prantl
2017-03-28[IR] Add AllowContract to FastMathFlagsAdam Nemet
2017-03-21Make test more robustAdam Nemet
2017-01-12Fix some -Wsign-compare warnings by making some integer literals explicitly u...David Blaikie
2017-01-12[DebugInfo] Added DI macro creation API to DIBuilder.Amjad Aboud
2016-12-14[DebugInfo] Changed DIBuilder::createCompileUnit() to take DIFile instead of ...Amjad Aboud
2016-09-06Formatting with clang-format patch r280700Leny Kholodov
2016-09-06DebugInfo: use strongly typed enum for debug info flagsLeny Kholodov
2016-09-06Revert "DebugInfo: use strongly typed enum for debug info flags"Mehdi Amini
2016-09-06DebugInfo: use strongly typed enum for debug info flagsMehdi Amini
2016-03-13Remove some unused variablesDavid Blaikie
2016-03-13Remove PreserveNames template parameter from IRBuilderMehdi Amini
2016-03-13Fixed DIBuilder to verify that same imported entity will not be added twice t...Amjad Aboud
2016-03-12Temporarily revert:Eric Christopher
2016-03-11Remove PreserveNames template parameter from IRBuilderMehdi Amini
2016-01-12function names start with a lower case letter ; NFCSanjay Patel
2015-12-31add FMF for CreateCall variantSanjay Patel
2015-12-14add fast-math-flags to 'call' instructions (PR21290)Sanjay Patel
2015-11-05DI: Reverse direction of subprogram -> function edge.Peter Collingbourne
2015-10-20unittests: Remove implicit ilist iterator conversions, NFCDuncan P. N. Exon Smith
2015-10-15Remove DIFile from createSubroutineType.Eric Christopher
2015-07-10Add support for fast-math flags to the FCmp instruction.James Molloy
2015-06-30Fix memory leak in unittest added in r241101.Alexey Samsonov
2015-06-30[DebugInfo] Let IRBuilder::SetInsertPoint(BB::iterator) update current debug ...Alexey Samsonov
2015-06-19IRBuilder: Add unit tests for construction of globals with address spaceTobias Grosser
2015-06-17Move the personality function from LandingPadInst to FunctionDavid Majnemer
2015-04-30Add convenient overloads for CreateInsertElement and CreateExtractElement met...Pawel Bylica
2015-04-11Use 'override/final' instead of 'virtual' for overridden methodsAlexander Kornienko
2015-04-06DebugInfo: Remove DIDescriptor::Verify()Duncan P. N. Exon Smith
2015-03-31Verifier: Move over DISubprogram::Verify()Duncan P. N. Exon Smith
2015-03-30Verifier: Add operand checks for MDLexicalBlockDuncan P. N. Exon Smith
2015-03-10DataLayout is mandatory, update the API to reflect it with references.Mehdi Amini
2015-03-04Make DataLayout Non-Optional in the ModuleMehdi Amini
2015-01-21simplify expressionAdrian Prantl
2015-01-21Fix a compile issue on MSVC and call finalize().Adrian Prantl
2015-01-21Let subprograms with instructions without parent scopes fail theAdrian Prantl
2014-09-02Fix a logic bug when copying fast-math flags.Sanjay Patel
2014-06-08[C++11] Use 'nullptr'.Craig Topper
2014-03-06Replace OwningPtr<T> with std::unique_ptr<T>.Ahmed Charles
2014-03-04[Modules] Move the NoFolder into the IR library as it createsChandler Carruth
2014-02-25Fix resetting the DataLayout in a Module.Rafael Espindola
2014-01-05Fix a bug in IRBuilder that's been there for who knows how long. ItChandler Carruth
2013-12-05Use present fast-math flags when applicable in CreateBinOpMichael Ilseman
2013-11-15Give unit test its own LLVMContext so MDNodes aren't leaked even if we never ...Benjamin Kramer
2013-10-05Silencing an MSVC warning.Aaron Ballman
2013-09-30IRBuilder: Add RAII objects to reset insertion points or fast math flags.Benjamin Kramer
2013-01-23IRTests/IRBuilderTest.cpp: GetIntTy: Delete DL at yourself since it is not li...NAKAMURA Takumi