Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
021c1f34
Commit
021c1f34
authored
May 22, 2002
by
Bruce Korb
Committed by
Bruce Korb
May 22, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use c_fix = format instead of sed
From-SVN: r53721
parent
4c526be3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
7 deletions
+9
-7
gcc/ChangeLog
+2
-0
gcc/fixinc/inclhack.def
+7
-7
No files found.
gcc/ChangeLog
View file @
021c1f34
2002-05-21 Bruce Korb <bkorb@gnu.org>
* fixinc/tests/base/pthread.h(THREAD_KEYWORD_CHECK): add fix check
* fixinc/inclhack.def(thread_keyword): use c_fix = format.
* fixinc/fixincl.x: regen.
2002-05-21 Kazu Hirata <kazu@cs.umass.edu>
...
...
gcc/fixinc/inclhack.def
View file @
021c1f34
...
...
@@ -2889,14 +2889,14 @@ fix = {
* __thread is now a keyword.
*/
fix = {
hackname
= thread_keyword;
files
= "pthread.h";
files
= "bits/sigthread.h";
select
= "pthread_t __thread
";
sed = "s/pthread_t __thread\\([^a-z0-9_]\\)/pthread_t __thr\\1/"
;
hackname
= thread_keyword;
files
= "pthread.h";
files
= "bits/sigthread.h";
select
= "pthread_t __thread([^a-z0-9_])
";
c_fix = format;
c_fix_arg = 'pthread_t __thr%1'
;
test_text
= "extern int pthread_kill (pthread_t __thread, int __signo);";
test_text
= "extern int pthread_kill (pthread_t __thread, int __signo);";
};
/*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment