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
6ab81302
Commit
6ab81302
authored
Mar 06, 2008
by
Ian Lance Taylor
Committed by
Ian Lance Taylor
Mar 06, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* alias.h (alias_set_type): Change from HOST_WIDE_INT to int.
From-SVN: r132964
parent
2f76571e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
gcc/ChangeLog
+4
-0
gcc/alias.h
+7
-2
No files found.
gcc/ChangeLog
View file @
6ab81302
2008-03-05 Ian Lance Taylor <iant@google.com>
* alias.h (alias_set_type): Change from HOST_WIDE_INT to int.
2008-03-05 Kenneth Zadeck <zadeck@naturalbridge.com>
* fwprop.c (update_df): Support width and offset parameters of
...
...
gcc/alias.h
View file @
6ab81302
...
...
@@ -22,8 +22,13 @@ along with GCC; see the file COPYING3. If not see
#include "coretypes.h"
/* The type of an alias set. */
typedef
HOST_WIDE_INT
alias_set_type
;
/* The type of an alias set. Code currently assumes that variables of
this type can take the values 0 (the alias set which aliases
everything) and -1 (sometimes indicating that the alias set is
unknown, sometimes indicating a memory barrier) and -2 (indicating
that the alias set should be set to a unique value but has not been
set yet). */
typedef
int
alias_set_type
;
extern
alias_set_type
new_alias_set
(
void
);
extern
alias_set_type
get_alias_set
(
tree
);
...
...
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