refresh of the patches

This commit is contained in:
Sylvestre Ledru 2014-02-28 08:57:27 +00:00
parent ec2892f263
commit 5b90f27933

View File

@ -1,22 +1,22 @@
Index: llvm-toolchain-snapshot_3.5~svn201843/clang/lib/Basic/FileManager.cpp Index: llvm-toolchain-snapshot_3.5~svn202473/clang/lib/Basic/FileManager.cpp
=================================================================== ===================================================================
--- llvm-toolchain-snapshot_3.5~svn201843.orig/clang/lib/Basic/FileManager.cpp 2014-02-21 11:13:02.574417177 +0100 --- llvm-toolchain-snapshot_3.5~svn202473.orig/clang/lib/Basic/FileManager.cpp 2014-02-28 09:56:58.459328014 +0100
+++ llvm-toolchain-snapshot_3.5~svn201843/clang/lib/Basic/FileManager.cpp 2014-02-21 11:13:02.570417177 +0100 +++ llvm-toolchain-snapshot_3.5~svn202473/clang/lib/Basic/FileManager.cpp 2014-02-28 09:56:58.455328015 +0100
@@ -43,6 +43,10 @@ @@ -476,6 +476,10 @@
/// represent a filename that doesn't exist on the disk. UniqueRealFiles.erase(Entry->getUniqueID());
#define NON_EXISTENT_FILE reinterpret_cast<FileEntry*>((intptr_t)-1) }
+// For GNU Hurd +// For GNU Hurd
+#if defined(__GNU__) && !defined(PATH_MAX) +#if defined(__GNU__) && !defined(PATH_MAX)
+# define PATH_MAX 4096 +# define PATH_MAX 4096
+#endif +#endif
class FileManager::UniqueDirContainer { void FileManager::GetUniqueIDMapping(
/// UniqueDirs - Cache from ID's to existing directories/files. SmallVectorImpl<const FileEntry *> &UIDToFiles) const {
Index: llvm-toolchain-snapshot_3.5~svn201843/lldb/include/lldb/lldb-defines.h Index: llvm-toolchain-snapshot_3.5~svn202473/lldb/include/lldb/lldb-defines.h
=================================================================== ===================================================================
--- llvm-toolchain-snapshot_3.5~svn201843.orig/lldb/include/lldb/lldb-defines.h 2014-02-21 11:13:02.574417177 +0100 --- llvm-toolchain-snapshot_3.5~svn202473.orig/lldb/include/lldb/lldb-defines.h 2014-02-28 09:56:58.459328014 +0100
+++ llvm-toolchain-snapshot_3.5~svn201843/lldb/include/lldb/lldb-defines.h 2014-02-21 11:13:02.570417177 +0100 +++ llvm-toolchain-snapshot_3.5~svn202473/lldb/include/lldb/lldb-defines.h 2014-02-28 09:56:58.455328015 +0100
@@ -12,6 +12,11 @@ @@ -12,6 +12,11 @@
#include "lldb/lldb-types.h" #include "lldb/lldb-types.h"
@ -29,10 +29,10 @@ Index: llvm-toolchain-snapshot_3.5~svn201843/lldb/include/lldb/lldb-defines.h
#if !defined(UINT32_MAX) #if !defined(UINT32_MAX)
#define UINT32_MAX 4294967295U #define UINT32_MAX 4294967295U
#endif #endif
Index: llvm-toolchain-snapshot_3.5~svn201843/lib/Support/Unix/Path.inc Index: llvm-toolchain-snapshot_3.5~svn202473/lib/Support/Unix/Path.inc
=================================================================== ===================================================================
--- llvm-toolchain-snapshot_3.5~svn201843.orig/lib/Support/Unix/Path.inc 2014-02-21 11:13:02.574417177 +0100 --- llvm-toolchain-snapshot_3.5~svn202473.orig/lib/Support/Unix/Path.inc 2014-02-28 09:56:58.459328014 +0100
+++ llvm-toolchain-snapshot_3.5~svn201843/lib/Support/Unix/Path.inc 2014-02-21 11:13:02.570417177 +0100 +++ llvm-toolchain-snapshot_3.5~svn202473/lib/Support/Unix/Path.inc 2014-02-28 09:56:58.455328015 +0100
@@ -58,6 +58,7 @@ @@ -58,6 +58,7 @@
// For GNU Hurd // For GNU Hurd
#if defined(__GNU__) && !defined(PATH_MAX) #if defined(__GNU__) && !defined(PATH_MAX)