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
11338cda
Commit
11338cda
authored
May 25, 2004
by
Svein E. Seldal
Committed by
Svein Seldal
May 25, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated AVR -mint8 option and set proper 64-bit type
From-SVN: r82233
parent
0429bc77
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
2 deletions
+18
-2
gcc/ChangeLog
+8
-0
gcc/config/avr/avr.h
+1
-1
gcc/doc/invoke.texi
+9
-1
No files found.
gcc/ChangeLog
View file @
11338cda
2004-05-25 Svein E. Seldal <Svein.Seldal@solidas.com>
* config/avr/avr.h (LONG_LONG_TYPE_SIZE): Changed long long type
to support 32-bit -mint8 mode.
* doc/invoke.texi (-mint8): Added documentation for the -mint8
option in the AVR architecture.
2004-05-24 Mike Stump <mrs@apple.com>
* doc/install.texi: Document that dejagnu 1.4.4 is required.
...
...
gcc/config/avr/avr.h
View file @
11338cda
...
...
@@ -142,7 +142,7 @@ extern int avr_asm_only_p;
#define INT_TYPE_SIZE (TARGET_INT8 ? 8 : 16)
#define SHORT_TYPE_SIZE (INT_TYPE_SIZE == 8 ? INT_TYPE_SIZE : 16)
#define LONG_TYPE_SIZE (INT_TYPE_SIZE == 8 ? 16 : 32)
#define LONG_LONG_TYPE_SIZE
64
#define LONG_LONG_TYPE_SIZE
(INT_TYPE_SIZE == 8 ? 32 : 64)
#define FLOAT_TYPE_SIZE 32
#define DOUBLE_TYPE_SIZE 32
#define LONG_DOUBLE_TYPE_SIZE 32
...
...
gcc/doc/invoke.texi
View file @
11338cda
...
...
@@ -592,7 +592,7 @@ in the following sections.
@
emph
{
AVR
Options
}
@
gccoptlist
{-
mmcu
=@
var
{
mcu
}
-
msize
-
minit
-
stack
=@
var
{
n
}
-
mno
-
interrupts
@
gol
-
mcall
-
prologues
-
mno
-
tablejump
-
mtiny
-
stack
}
-
mcall
-
prologues
-
mno
-
tablejump
-
mtiny
-
stack
-
mint8
}
@
emph
{
MCore
Options
}
@
gccoptlist
{-
mhardlit
-
mno
-
hardlit
-
mdiv
-
mno
-
div
-
mrelax
-
immediates
@
gol
...
...
@@ -10184,6 +10184,14 @@ Do not generate tablejump insns which sometimes increase code size.
@
item
-
mtiny
-
stack
@
opindex
mtiny
-
stack
Change
only
the
low
8
bits
of
the
stack
pointer
.
@
item
-
mint8
@
opindex
mint8
Assume
int
to
be
8
bit
integer
.
This
affects
the
sizes
of
all
types
:
A
char
will
be
1
byte
,
an
int
will
be
1
byte
,
an
long
will
be
2
bytes
and
long
long
will
be
4
bytes
.
Please
note
that
this
option
does
not
comply
to
the
C
standards
,
but
it
will
provide
you
with
smaller
code
size
.
@
end
table
@
node
MCore
Options
...
...
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