Fork of llvm with experimental commits and workarounds for RPCS3
Go to file
Nuno Lopes 20aad04ccc Fix PR33878: BasicAA incorrectly assumes different address spaces don't alias
Remove code that assumed that a nullptr of address space != 0 couldnt alias with a non-null pointer. This is incorrect, since nothing can be concluded about a null pointer in an address space != 0.
This code was written before address spaces were introduced

Differential Revision: https://reviews.llvm.org/D37518

llvm-svn: 312648
2017-09-06 16:55:31 +00:00
bindings
cmake
docs Fix RST syntax in LangRef for llvm.codeview.annotation intrinsic 2017-09-05 20:26:25 +00:00
examples
include Minor style fixes in lib/Support/**/Program.(inc|cpp). 2017-09-06 16:28:33 +00:00
lib Fix PR33878: BasicAA incorrectly assumes different address spaces don't alias 2017-09-06 16:55:31 +00:00
projects
resources
runtimes
test Revert "[llvm-objcopy] Add support for relocations" 2017-09-06 16:23:15 +00:00
tools Revert "[llvm-objcopy] Add support for relocations" 2017-09-06 16:23:15 +00:00
unittests [ORC] Convert null remote symbols to null JITSymbols. 2017-09-05 22:24:40 +00:00
utils
.arcconfig
.clang-format
.clang-tidy
.gitignore
CMakeLists.txt
CODE_OWNERS.TXT
configure
CREDITS.TXT
LICENSE.TXT
llvm.spec.in
LLVMBuild.txt
README.txt
RELEASE_TESTERS.TXT

Low Level Virtual Machine (LLVM)
================================

This directory and its subdirectories contain source code for LLVM,
a toolkit for the construction of highly optimized compilers,
optimizers, and runtime environments.

LLVM is open source software. You may freely distribute it under the terms of
the license agreement found in LICENSE.txt.

Please see the documentation provided in docs/ for further
assistance with LLVM, and in particular docs/GettingStarted.rst for getting
started with LLVM and docs/README.txt for an overview of LLVM's
documentation setup.

If you are writing a package for LLVM, see docs/Packaging.rst for our
suggestions.