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
cf35eebc
Commit
cf35eebc
authored
Aug 10, 2001
by
Kazu Hirata
Committed by
Kazu Hirata
Aug 10, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/h8300/h8300.h: Fix formatting.
From-SVN: r44763
parent
07b2f2fd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
13 deletions
+19
-13
gcc/ChangeLog
+4
-0
gcc/config/h8300/h8300.h
+15
-13
No files found.
gcc/ChangeLog
View file @
cf35eebc
2001
-
08
-
10
Kazu
Hirata
<
kazu
@hxi
.
com
>
*
config
/
h8300
/
h8300
.
h
:
Fix
formatting
.
2001
-
08
-
08
Jason
Merrill
<
jason_merrill
@redhat
.
com
>
2001
-
08
-
08
Jason
Merrill
<
jason_merrill
@redhat
.
com
>
*
c
-
common
.
h
(
RETURN_NULLIFIED_P
)
:
Lose
.
*
c
-
common
.
h
(
RETURN_NULLIFIED_P
)
:
Lose
.
...
...
gcc/config/h8300/h8300.h
View file @
cf35eebc
...
@@ -1134,17 +1134,17 @@ readonly_data () \
...
@@ -1134,17 +1134,17 @@ readonly_data () \
/* If we are referencing a function that is supposed to be called
/* If we are referencing a function that is supposed to be called
through the function vector, the SYMBOL_REF_FLAG in the rtl
through the function vector, the SYMBOL_REF_FLAG in the rtl
so the call patterns can generate the correct code. */
so the call patterns can generate the correct code. */
#define ENCODE_SECTION_INFO(DECL) \
#define ENCODE_SECTION_INFO(DECL)
\
if (TREE_CODE (DECL) == FUNCTION_DECL \
if (TREE_CODE (DECL) == FUNCTION_DECL
\
&& h8300_funcvec_function_p (DECL)) \
&& h8300_funcvec_function_p (DECL))
\
SYMBOL_REF_FLAG (XEXP (DECL_RTL (DECL), 0)) = 1; \
SYMBOL_REF_FLAG (XEXP (DECL_RTL (DECL), 0)) = 1;
\
else if (TREE_CODE (DECL) == VAR_DECL \
else if (TREE_CODE (DECL) == VAR_DECL
\
&& (TREE_STATIC (DECL) || DECL_EXTERNAL (DECL))
\
&& (TREE_STATIC (DECL) || DECL_EXTERNAL (DECL))
\
&& h8300_eightbit_data_p (DECL)) \
&& h8300_eightbit_data_p (DECL))
\
SYMBOL_REF_FLAG (XEXP (DECL_RTL (DECL), 0)) = 1; \
SYMBOL_REF_FLAG (XEXP (DECL_RTL (DECL), 0)) = 1;
\
else if (TREE_CODE (DECL) == VAR_DECL \
else if (TREE_CODE (DECL) == VAR_DECL
\
&& (TREE_STATIC (DECL) || DECL_EXTERNAL (DECL))
\
&& (TREE_STATIC (DECL) || DECL_EXTERNAL (DECL))
\
&& h8300_tiny_data_p (DECL)) \
&& h8300_tiny_data_p (DECL))
\
h8300_encode_label (DECL);
h8300_encode_label (DECL);
/* Store the user-specified part of SYMBOL_NAME in VAR.
/* Store the user-specified part of SYMBOL_NAME in VAR.
...
@@ -1250,7 +1250,8 @@ readonly_data () \
...
@@ -1250,7 +1250,8 @@ readonly_data () \
char dstr[30]; \
char dstr[30]; \
REAL_VALUE_TO_DECIMAL ((VALUE), "%.20e", dstr); \
REAL_VALUE_TO_DECIMAL ((VALUE), "%.20e", dstr); \
fprintf (FILE, "\t.double %s\n", dstr); \
fprintf (FILE, "\t.double %s\n", dstr); \
} while (0)
} \
while (0)
/* This is how to output an assembler line defining a `float' constant. */
/* This is how to output an assembler line defining a `float' constant. */
#define ASM_OUTPUT_FLOAT(FILE, VALUE) \
#define ASM_OUTPUT_FLOAT(FILE, VALUE) \
...
@@ -1259,7 +1260,8 @@ readonly_data () \
...
@@ -1259,7 +1260,8 @@ readonly_data () \
char dstr[30]; \
char dstr[30]; \
REAL_VALUE_TO_DECIMAL ((VALUE), "%.20e", dstr); \
REAL_VALUE_TO_DECIMAL ((VALUE), "%.20e", dstr); \
fprintf (FILE, "\t.float %s\n", dstr); \
fprintf (FILE, "\t.float %s\n", dstr); \
} while (0)
} \
while (0)
/* This is how to output an assembler line defining an `int' constant. */
/* This is how to output an assembler line defining an `int' constant. */
...
...
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