Update llvm.

This commit is contained in:
Luqman Aden 2013-12-27 15:31:49 -05:00
parent cc1b93e425
commit d9eaeda21c
4 changed files with 4 additions and 6 deletions

2
.gitmodules vendored
View File

@ -1,6 +1,6 @@
[submodule "src/llvm"]
path = src/llvm
url = https://github.com/alexcrichton/llvm.git
url = https://github.com/luqmana/llvm.git
branch = master
[submodule "src/libuv"]
path = src/libuv

@ -1 +1 @@
Subproject commit eac6ff795c40778683e42b0c6ab6f6adaceb391d
Subproject commit 8841dcef357e051c34a46030db7c7b1a83f9b1d8

View File

@ -81,9 +81,7 @@ LLVMRustCreateTargetMachine(const char *triple,
TargetOptions Options;
Options.NoFramePointerElim = true;
Options.EnableSegmentedStacks = EnableSegmentedStacks;
Options.FloatABIType =
(Trip.getEnvironment() == Triple::GNUEABIHF) ? FloatABI::Hard :
FloatABI::Default;
Options.FloatABIType = FloatABI::Default;
Options.UseSoftFloat = UseSoftFloat;
if (UseSoftFloat) {
Options.FloatABIType = FloatABI::Soft;

View File

@ -1,4 +1,4 @@
# If this file is modified, then llvm will be forcibly cleaned and then rebuilt.
# The actual contents of this file do not matter, but to trigger a change on the
# build bots then the contents should be changed so git updates the mtime.
2013-12-18
2013-12-29