index
:
external_llvm.git
replicant-6.0
Unnamed repository; edit this file 'description' to name the repository.
git repository hosting
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
lib
/
Archive
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix auto_ptr is deprecated warnings
Matt Arsenault
2013-02-26
1
-11
/
+11
*
Fix typo
Matt Arsenault
2013-02-26
1
-1
/
+1
*
Move all of the header files which are involved in modelling the LLVM IR
Chandler Carruth
2013-01-02
3
-3
/
+3
*
Sort includes for all of the .h files under the 'lib' tree. These were
Chandler Carruth
2012-12-04
1
-2
/
+1
*
Use the new script to sort the includes of every file under lib.
Chandler Carruth
2012-12-03
3
-4
/
+7
*
Mark checkSignature const, and in turn stop casting away const from
Roman Divacky
2012-09-05
2
-3
/
+3
*
Remove references to compression in llvm-ar. It has been a long time since we
Rafael Espindola
2012-08-10
2
-10
/
+4
*
Include cstdio in a few place that depended on getting it transitively throug...
Benjamin Kramer
2012-03-23
1
-0
/
+1
*
Avoid using an invalidated iterator.
Rafael Espindola
2012-01-23
1
-1
/
+5
*
The iteration order over a std::set<Module*> depends on the addresses of the
Rafael Espindola
2012-01-23
1
-13
/
+15
*
Support/FileSystem: Add file_magic and move a vew clients over to it.
Michael J. Spencer
2011-12-13
1
-3
/
+3
*
LLVMBuild: Remove trailing newline, which irked me.
Daniel Dunbar
2011-12-12
1
-1
/
+0
*
build/CMake: Finish removal of add_llvm_library_dependencies.
Daniel Dunbar
2011-11-29
1
-6
/
+0
*
build: Add initial cut at LLVMBuild.txt files.
Daniel Dunbar
2011-11-03
1
-0
/
+23
*
Rewrite the CMake build to use explicit dependencies between libraries,
Chandler Carruth
2011-07-29
1
-0
/
+6
*
Revert PathV2 changes, as sys::fs::unique_file is not finished yet.
Dan Gohman
2011-03-01
1
-38
/
+36
*
Archive: Fix temp path names.
Michael J. Spencer
2011-01-17
1
-4
/
+6
*
UnRevert "Revert "Archive: Replace all internal uses of PathV1 with PathV2. T...
Michael J. Spencer
2011-01-16
1
-36
/
+36
*
UnRevert "Revert the archive part of "Support/PathV2: Add identify_magic.""
Michael J. Spencer
2011-01-16
2
-6
/
+7
*
Revert the archive part of "Support/PathV2: Add identify_magic."
Michael J. Spencer
2011-01-16
2
-7
/
+6
*
Revert "Archive: Replace all internal uses of PathV1 with PathV2. The externa...
Michael J. Spencer
2011-01-16
1
-36
/
+36
*
Archive: Replace all internal uses of PathV1 with PathV2. The external API st...
Michael J. Spencer
2011-01-15
1
-36
/
+36
*
Support/PathV2: Add identify_magic.
Michael J. Spencer
2011-01-15
2
-6
/
+7
*
Fix Whitespace.
Michael J. Spencer
2011-01-10
2
-17
/
+17
*
Support/Path: Deprecate PathV1::exists and replace all uses with PathV2::fs::...
Michael J. Spencer
2011-01-10
2
-3
/
+7
*
MemoryBuffer now return an error_code and returns a OwningPtr<MemoryBuffer> v...
Michael J. Spencer
2010-12-16
2
-14
/
+11
*
Support/MemoryBuffer: Replace all uses of std::string *ErrMsg with error_code...
Michael J. Spencer
2010-12-09
2
-8
/
+25
*
Merge System into Support.
Michael J. Spencer
2010-11-29
3
-4
/
+4
*
Revert "CMake: Get rid of LLVMLibDeps.cmake and export the libraries normally."
Michael J. Spencer
2010-09-13
1
-2
/
+0
*
CMake: Get rid of LLVMLibDeps.cmake and export the libraries normally.
Michael J. Spencer
2010-09-10
1
-0
/
+2
*
Eliminate some unnessary Path::exists() calls.
Dan Gohman
2010-05-27
1
-8
/
+4
*
silence a warning, patch by "mike".
Chris Lattner
2010-04-25
1
-1
/
+1
*
Don't write into MemoryBuffers.
Benjamin Kramer
2010-04-19
4
-18
/
+13
*
Fix -Wcast-qual warnings.
Dan Gohman
2010-04-19
2
-4
/
+7
*
add newlines at end of files.
Chris Lattner
2010-04-07
1
-1
/
+1
*
Fix a grammaro.
Dan Gohman
2010-03-30
1
-1
/
+1
*
From PR6228:
Chris Lattner
2010-02-04
1
-1
/
+2
*
Kill ModuleProvider and ghost linkage by inverting the relationship between
Jeffrey Yasskin
2010-01-27
4
-59
/
+44
*
make -fno-rtti the default unless a directory builds with REQUIRES_RTTI.
Chris Lattner
2010-01-24
1
-1
/
+0
*
Stop building RTTI information for *most* llvm libraries. Notable
Chris Lattner
2010-01-22
1
-0
/
+1
*
Prune #includes from llvm/Linker.h and llvm/System/Path.h,
Chris Lattner
2009-08-23
3
-26
/
+25
*
Make LLVMContext and LLVMContextImpl classes instead of structs.
Benjamin Kramer
2009-08-11
1
-1
/
+1
*
Factor some of the constants+context related code out into a separate header,...
Owen Anderson
2009-08-04
1
-1
/
+1
*
Fix some non-sensical code.
Daniel Dunbar
2009-07-13
1
-1
/
+4
*
Make the use of const with respect to LLVMContext sane. Hopefully this is th...
Owen Anderson
2009-07-01
4
-8
/
+8
*
Hold the LLVMContext by reference rather than by pointer.
Owen Anderson
2009-07-01
4
-8
/
+9
*
Add a pointer to the owning LLVMContext to Module. This requires threading L...
Owen Anderson
2009-07-01
4
-19
/
+25
*
Avoid leaking memory in an error path. Noticed
Duncan Sands
2009-06-11
1
-3
/
+4
*
Add the private linkage.
Rafael Espindola
2009-01-15
1
-2
/
+2
*
Removed trailing whitespace from Makefiles.
Misha Brukman
2009-01-09
1
-3
/
+3
[next]