|
1 | 1 | Auto generated patch. Do not edit or delete it, even if empty.
|
2 |
| -<<<<<<< HEAD |
3 |
| -diff -ruN --strip-trailing-cr a/lld/ELF/Config.h b/lld/ELF/Config.h |
4 |
| ---- a/lld/ELF/Config.h |
5 |
| -+++ b/lld/ELF/Config.h |
6 |
| -@@ -619,7 +619,6 @@ |
7 |
| - }; |
8 |
| - ElfSym sym{}; |
9 |
| - std::unique_ptr<SymbolTable> symtab; |
10 |
| -- SmallVector<Symbol *, 0> synthesizedSymbols; |
11 |
| - |
12 |
| - SmallVector<std::unique_ptr<MemoryBuffer>> memoryBuffers; |
13 |
| - SmallVector<ELFFileBase *, 0> objectFiles; |
14 |
| -diff -ruN --strip-trailing-cr a/lld/ELF/Writer.cpp b/lld/ELF/Writer.cpp |
15 |
| ---- a/lld/ELF/Writer.cpp |
16 |
| -+++ b/lld/ELF/Writer.cpp |
17 |
| -@@ -149,7 +149,6 @@ |
18 |
| - if (!s || s->isDefined() || s->isCommon()) |
19 |
| - return nullptr; |
20 |
| - |
21 |
| -- ctx.synthesizedSymbols.push_back(s); |
22 |
| - s->resolve(ctx, Defined{ctx, ctx.internalFile, StringRef(), STB_GLOBAL, |
23 |
| - stOther, STT_NOTYPE, val, |
24 |
| - /*size=*/0, sec}); |
25 |
| -@@ -283,7 +282,6 @@ |
26 |
| - static void demoteSymbolsAndComputeIsPreemptible(Ctx &ctx) { |
27 |
| - llvm::TimeTraceScope timeScope("Demote symbols"); |
28 |
| - DenseMap<InputFile *, DenseMap<SectionBase *, size_t>> sectionIndexMap; |
29 |
| -- bool hasDynSymTab = ctx.arg.hasDynSymTab; |
30 |
| - for (Symbol *sym : ctx.symtab->getSymbols()) { |
31 |
| - if (auto *d = dyn_cast<Defined>(sym)) { |
32 |
| - if (d->section && !d->section->isLive()) |
33 |
| -@@ -296,12 +294,11 @@ |
34 |
| - sym->type) |
35 |
| - .overwrite(*sym); |
36 |
| - sym->versionId = VER_NDX_GLOBAL; |
37 |
| -- if (sym->includeInDynsym(ctx)) |
38 |
| -- sym->isExported = true; |
39 |
| - } |
40 |
| - } |
41 |
| - |
42 |
| -- if (hasDynSymTab) |
43 |
| -+ sym->isExported = sym->includeInDynsym(ctx); |
44 |
| -+ if (ctx.arg.hasDynSymTab) |
45 |
| - sym->isPreemptible = sym->isExported && computeIsPreemptible(ctx, *sym); |
46 |
| - } |
47 |
| - } |
48 |
| -@@ -1839,11 +1836,6 @@ |
49 |
| - } |
50 |
| - } |
51 |
| - |
52 |
| -- // If the previous code block defines any non-hidden symbols (e.g. |
53 |
| -- // __global_pointer$), they may be exported. |
54 |
| -- for (Symbol *sym : ctx.synthesizedSymbols) |
55 |
| -- sym->isExported = sym->includeInDynsym(ctx); |
56 |
| -- |
57 |
| - demoteSymbolsAndComputeIsPreemptible(ctx); |
58 |
| - |
59 |
| - if (ctx.arg.copyRelocs && ctx.arg.discard != DiscardPolicy::None) |
60 |
| -======= |
61 | 2 | diff -ruN --strip-trailing-cr a/clang/include/clang/Basic/BuiltinsX86.td b/clang/include/clang/Basic/BuiltinsX86.td
|
62 | 3 | --- a/clang/include/clang/Basic/BuiltinsX86.td
|
63 | 4 | +++ b/clang/include/clang/Basic/BuiltinsX86.td
|
@@ -189,4 +130,3 @@ diff -ruN --strip-trailing-cr a/clang/lib/Headers/xmmintrin.h b/clang/lib/Header
|
189 | 130 | #define _mm_prefetch(a, sel) (__builtin_prefetch((const void *)(a), \
|
190 | 131 | ((sel) >> 2) & 1, (sel) & 0x3))
|
191 | 132 | #endif
|
192 |
| ->>>>>>> upstream/r2.19 |
0 commit comments