Login
Log in using an SSO provider:
Fedora Account System
Red Hat Associate
Red Hat Customer
Login using a Red Hat Bugzilla account
Forgot Password
Create an Account
Red Hat Bugzilla – Attachment 1254892 Details for
Bug 1424367
valgrind: FTBFS in rawhide
Home
New
Search
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh90 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
[?]
This site requires JavaScript to be enabled to function correctly, please enable it.
patch to remove R2 from clobber list
valgrind-remove-toc-clobbers.diff (text/plain), 2.07 KB, created by
Will Schmidt
on 2017-02-17 17:30:11 UTC
(
hide
)
Description:
patch to remove R2 from clobber list
Filename:
MIME Type:
Creator:
Will Schmidt
Created:
2017-02-17 17:30:11 UTC
Size:
2.07 KB
patch
obsolete
> > On ppc64*, R2 is the TOC pointer, should not be considered a > scratch register, and thus should not be in the clobber list. > This is called out in newer GCC releases and triggers a > compile time error. > > Thusly, remove R2 from the clobber list. > >diff --git a/coregrind/m_debuglog.c b/coregrind/m_debuglog.c >index dc6e26d..be77680 100644 >--- a/coregrind/m_debuglog.c >+++ b/coregrind/m_debuglog.c >@@ -215,7 +215,7 @@ static UInt local_sys_write_stderr ( const HChar* buf, Int n ) > : > : "b" (block) > : "cc","memory","cr0","ctr", >- "r0","r2","r3","r4","r5","r6","r7","r8","r9","r10","r11","r12" >+ "r0","r3","r4","r5","r6","r7","r8","r9","r10","r11","r12" > ); > if (block[0] < 0) > block[0] = -1; >@@ -231,7 +231,7 @@ static UInt local_sys_getpid ( void ) > : "=&r" (__res) > : "i" (__NR_getpid) > : "cc","memory","cr0","ctr", >- "r0","r2","r4","r5","r6","r7","r8","r9","r10","r11","r12" >+ "r0","r4","r5","r6","r7","r8","r9","r10","r11","r12" > ); > return (UInt)__res; > } >diff --git a/include/valgrind.h b/include/valgrind.h >index 6892007..d2e7c38 100644 >--- a/include/valgrind.h >+++ b/include/valgrind.h >@@ -2708,7 +2708,7 @@ typedef > #define __CALLER_SAVED_REGS \ > "lr", "ctr", "xer", \ > "cr0", "cr1", "cr2", "cr3", "cr4", "cr5", "cr6", "cr7", \ >- "r0", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9", "r10", \ >+ "r0", "r3", "r4", "r5", "r6", "r7", "r8", "r9", "r10", \ > "r11", "r12", "r13" > > /* Macros to save and align the stack before making a function >@@ -3264,7 +3264,7 @@ typedef > #define __CALLER_SAVED_REGS \ > "lr", "ctr", "xer", \ > "cr0", "cr1", "cr2", "cr3", "cr4", "cr5", "cr6", "cr7", \ >- "r0", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9", "r10", \ >+ "r0", "r3", "r4", "r5", "r6", "r7", "r8", "r9", "r10", \ > "r11", "r12", "r13" > > /* Macros to save and align the stack before making a function
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 1424367
:
1254378
|
1254379
|
1254380
| 1254892