mirror of
https://git.proxmox.com/git/llvm-toolchain
synced 2025-11-01 12:33:45 +00:00
remove patch merged upstream
This commit is contained in:
parent
e565a978c6
commit
e464492093
26
debian/patches/D59189-unbreak.diff
vendored
26
debian/patches/D59189-unbreak.diff
vendored
@ -1,26 +0,0 @@
|
||||
Index: llvm-toolchain-snapshot_9~svn339515.orig/lib/ExecutionEngine/PerfJITEvents/PerfJITEventListener.cpp
|
||||
===================================================================
|
||||
--- llvm-toolchain-snapshot_9~svn339515.orig/lib/ExecutionEngine/PerfJITEvents/PerfJITEventListener.cpp (révision 355787)
|
||||
+++ llvm-toolchain-snapshot_9~svn339515/lib/ExecutionEngine/PerfJITEvents/PerfJITEventListener.cpp (copie de travail)
|
||||
@@ -265,16 +265,16 @@
|
||||
consumeError(AddrOrErr.takeError());
|
||||
continue;
|
||||
}
|
||||
- uint64_t Addr = *AddrOrErr;
|
||||
uint64_t Size = P.second;
|
||||
-
|
||||
+ object::SectionedAddress Address;
|
||||
+ Address.Address = *AddrOrErr;
|
||||
// According to spec debugging info has to come before loading the
|
||||
// corresonding code load.
|
||||
DILineInfoTable Lines = Context->getLineInfoForAddressRange(
|
||||
- Addr, Size, FileLineInfoKind::AbsoluteFilePath);
|
||||
+ Address, Size, FileLineInfoKind::AbsoluteFilePath);
|
||||
|
||||
- NotifyDebug(Addr, Lines);
|
||||
- NotifyCode(Name, Addr, Size);
|
||||
+ NotifyDebug(*AddrOrErr, Lines);
|
||||
+ NotifyCode(Name, *AddrOrErr, Size);
|
||||
}
|
||||
|
||||
Dumpstream->flush();
|
||||
1
debian/patches/series
vendored
1
debian/patches/series
vendored
@ -126,4 +126,3 @@ kfreebsd/lib_Target_X86.diff
|
||||
kfreebsd/lldb_source_Host_freebsd_Host.cpp.diff
|
||||
kfreebsd/lldb_source_Plugins_Process_FreeBSD.diff
|
||||
kfreebsd/tools_llvm-shlib_CMakeLists.txt.diff
|
||||
D59189-unbreak.diff
|
||||
|
||||
Loading…
Reference in New Issue
Block a user