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
5e14ae7e
Commit
5e14ae7e
authored
Jul 04, 2003
by
Neil Booth
Committed by
Neil Booth
Jul 04, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* opts.c (common_handle_options): Negate sense of -falign- switches.
From-SVN: r68939
parent
69ef29fd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
gcc/ChangeLog
+4
-0
gcc/opts.c
+4
-4
No files found.
gcc/ChangeLog
View file @
5e14ae7e
2003-07-04 Neil Booth <neil@daikokuya.co.uk>
* opts.c (common_handle_options): Negate sense of -falign- switches.
2003-07-04 H.J. Lu <hongjiu.lu@intel.com>
* Makefile.in: Replace PWD with PWD_COMMAND.
...
...
gcc/opts.c
View file @
5e14ae7e
...
...
@@ -789,22 +789,22 @@ common_handle_option (size_t scode, const char *arg,
case
OPT_falign_functions
:
case
OPT_falign_functions_
:
align_functions
=
value
;
align_functions
=
!
value
;
break
;
case
OPT_falign_jumps
:
case
OPT_falign_jumps_
:
align_jumps
=
value
;
align_jumps
=
!
value
;
break
;
case
OPT_falign_labels
:
case
OPT_falign_labels_
:
align_labels
=
value
;
align_labels
=
!
value
;
break
;
case
OPT_falign_loops
:
case
OPT_falign_loops_
:
align_loops
=
value
;
align_loops
=
!
value
;
break
;
case
OPT_fargument_alias
:
...
...
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