-
Notifications
You must be signed in to change notification settings - Fork 13k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LLVM upgrade #34743
Merged
Merged
LLVM upgrade #34743
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
d22a9a2
Upgrade to rust-llvm-2016-07-09
badboy 7420874
[LLVM-3.9] Rename custom methods to Rust-specific ones
badboy fba1f8f
[LLVM-3.9] Setup the compile unit information immediately
badboy 6ed5db8
[LLVM-3.9] Specify that we are using the legacy interface
badboy 5b44e10
[LLVM-3.9] Preserve certain functions when internalizing
badboy 8433f9b
[LLVM-3.9] Replace NewArchiveIterator with NewArchiveMember
badboy dbb4178
[LLVM-3.9] Update return type for Archive::create
badboy 9e706f9
[LLVM-3.9] Configure PIE at the module level instead of compilation u…
badboy 12ccff9
Use relative path to type
badboy deafab1
[LLVM-3.9] Increase PIELevel
badboy 1bc0447
[LLVM-3.9] Maintain backward compatibility in Archiver
badboy 1798c1a
Refactor determining of relocation model into methods
badboy 2bcb2b8
Upgrade LLVM to include std::thread patch
badboy d0e5aa4
Upgrade compiler-rt
badboy f439aee
[LLVM-3.9] Use old way of getting next child
badboy 09c3f33
Flip LLVM verion check clause
badboy ad262d5
Update compiler-rt
badboy 2c92756
Upgrade llvm
badboy dc7076b
[LLVM-3.9] Pass correct relocation model flag
badboy 079db4f
Use correct error handling type
badboy 2c16e24
Use C type when passing value to LLVM pass
badboy a36595e
Force check of error
badboy d851428
configure: Fix grep invocation for llvm-mc argument
alexcrichton e8f7666
rustc: Fix data-layout for AArch64 targets
alexcrichton 5fa5578
test: Remove the execution-engine test
alexcrichton 75bcda4
rustc: Update LLVM to the LLVM 3.9 release branch
alexcrichton 0509be1
Update parsing llvm-config output
alexcrichton 2492d24
llvm: Remove no longer existent LLVMAddTargetData binding
alexcrichton 330dd39
Remove NO_FILE_METADATA; always use unknown_file_metadata instead of …
vvuk f38762a
[LLVM-3.9] Use llvm-3.9 branch
badboy 5243072
test: Fix a test on MSVC
alexcrichton 7c0cd30
Update LLVM again
badboy 5d1d247
Upgrade LLVM once more to get a bugfix
badboy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule compiler-rt
updated
691 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You might need to set the
PICLevel
too, even if the relocation model isPIC
.One potentially related failure is:
EDIT: Not that it would help, given how it's only used in PowerPC.