Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
gcc-cobol
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
COBOLworx
gcc-cobol
Commits
8515dc81
Commit
8515dc81
authored
24 years ago
by
Philip Blundell
Committed by
Phil Blundell
24 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix illegal asm
From-SVN: r38618
parent
7def3512
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
gcc/ChangeLog
+5
-0
5 additions, 0 deletions
gcc/ChangeLog
gcc/config/arm/linux-gas.h
+3
-4
3 additions, 4 deletions
gcc/config/arm/linux-gas.h
with
8 additions
and
4 deletions
gcc/ChangeLog
+
5
−
0
View file @
8515dc81
2001-01-02 Philip Blundell <pb@futuretv.com>
* config/arm/linux-gas.h (CLEAR_INSN_CACHE): Avoid illegal clobber
of input operand.
2001-01-02 Richard Henderson <rth@redhat.com>
2001-01-02 Richard Henderson <rth@redhat.com>
* alpha.md (*ze_and_ne): Duplicate insn condition to split.
* alpha.md (*ze_and_ne): Duplicate insn condition to split.
...
...
This diff is collapsed.
Click to expand it.
gcc/config/arm/linux-gas.h
+
3
−
4
View file @
8515dc81
/* Definitions of target machine for GNU compiler.
/* Definitions of target machine for GNU compiler.
ARM Linux-based GNU systems version.
ARM Linux-based GNU systems version.
Copyright (C) 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
Copyright (C) 1997, 1998, 1999, 2000
, 2001
Free Software Foundation, Inc.
Contributed by Russell King <rmk92@ecs.soton.ac.uk>.
Contributed by Russell King <rmk92@ecs.soton.ac.uk>.
This file is part of GNU CC.
This file is part of GNU CC.
...
@@ -80,7 +80,6 @@ Boston, MA 02111-1307, USA. */
...
@@ -80,7 +80,6 @@ Boston, MA 02111-1307, USA. */
register unsigned long _end __asm ("a2") = (unsigned long) (END); \
register unsigned long _end __asm ("a2") = (unsigned long) (END); \
register unsigned long _flg __asm ("a3") = 0; \
register unsigned long _flg __asm ("a3") = 0; \
__asm __volatile ("swi 0x9f0002 @ sys_cacheflush" \
__asm __volatile ("swi 0x9f0002 @ sys_cacheflush" \
:
/* no outputs */
\
: "=r" (_beg) \
: "r" (_beg), "r" (_end), "r" (_flg) \
: "0" (_beg), "r" (_end), "r" (_flg)); \
: "a1"); \
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment