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
5dd0c182
Commit
5dd0c182
authored
May 14, 1999
by
Ulrich Drepper
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(FD_ZERO): Fix operand numbers in asm input operands.
From-SVN: r26933
parent
4b5c9f6b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
gcc/fixinc/fixinc.x86-linux-gnu
+6
-6
No files found.
gcc/fixinc/fixinc.x86-linux-gnu
View file @
5dd0c182
...
...
@@ -46,9 +46,9 @@ cat <<'__EOF__' >$LIB/$file
int __d0, __d1; \
__asm__ __volatile__ ("cld; rep; stosl" \
: "=&c" (__d0), "=&D" (__d1) \
: "a" (0), "
1
" (sizeof (__fd_set) \
: "a" (0), "
0
" (sizeof (__fd_set) \
/ sizeof (__fd_mask)), \
"
2
" ((__fd_mask *) (fdsetp)) \
"
1
" ((__fd_mask *) (fdsetp)) \
: "memory"); \
} while (0)
#endif
...
...
@@ -83,8 +83,8 @@ cat <<'__EOF__' >$LIB/$file
int __d0, __d1; \
__asm__ __volatile__("cld ; rep ; stosl" \
: "=&c" (__d0), "=&D" (__d1) \
: "a" (0), "
1
" (__FDSET_LONGS), \
"
2
" ((__kernel_fd_set *) (fdsetp)) :"memory"); \
: "a" (0), "
0
" (__FDSET_LONGS), \
"
1
" ((__kernel_fd_set *) (fdsetp)) :"memory"); \
} while (0)
#endif
...
...
@@ -118,8 +118,8 @@ cat <<'__EOF__' >$LIB/$file
int __d0, __d1; \
__asm__ __volatile__("cld ; rep ; stosl" \
: "=&c" (__d0), "=&D" (__d1) \
: "a" (0), "
1
" (__FDSET_LONGS), \
"
2
" ((__fd_set *) (fdsetp)) :"memory"); \
: "a" (0), "
0
" (__FDSET_LONGS), \
"
1
" ((__fd_set *) (fdsetp)) :"memory"); \
} while (0)
#endif
...
...
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