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
a604ca26
Commit
a604ca26
authored
Apr 09, 1993
by
Tom Wood
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(is_class_name, maybe_objc_method_name,
build_objc_string): New functions. From-SVN: r4066
parent
abe31bf8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
3 deletions
+28
-3
gcc/c-lang.c
+28
-3
No files found.
gcc/c-lang.c
View file @
a604ca26
...
@@ -53,7 +53,13 @@ lang_identify ()
...
@@ -53,7 +53,13 @@ lang_identify ()
return
"c"
;
return
"c"
;
}
}
void
print_lang_statistics
()
{
}
/* Used by c-lex.c, but only for objc. */
/* Used by c-lex.c, but only for objc. */
tree
tree
lookup_interface
(
arg
)
lookup_interface
(
arg
)
tree
arg
;
tree
arg
;
...
@@ -61,6 +67,13 @@ lookup_interface (arg)
...
@@ -61,6 +67,13 @@ lookup_interface (arg)
return
0
;
return
0
;
}
}
tree
is_class_name
(
arg
)
tree
arg
;
{
return
0
;
}
void
void
maybe_objc_check_decl
(
decl
)
maybe_objc_check_decl
(
decl
)
tree
decl
;
tree
decl
;
...
@@ -68,8 +81,16 @@ maybe_objc_check_decl (decl)
...
@@ -68,8 +81,16 @@ maybe_objc_check_decl (decl)
}
}
int
int
maybe_objc_comptypes
(
lhs
,
rhs
)
maybe_objc_comptypes
(
lhs
,
rhs
,
reflexive
)
tree
lhs
,
rhs
;
tree
lhs
,
rhs
;
int
reflexive
;
{
return
2
;
}
tree
maybe_objc_method_name
(
decl
)
tree
decl
;
{
{
return
0
;
return
0
;
}
}
...
@@ -86,9 +107,13 @@ recognize_objc_keyword ()
...
@@ -86,9 +107,13 @@ recognize_objc_keyword ()
return
0
;
return
0
;
}
}
void
tree
print_lang_statistics
()
build_objc_string
(
len
,
str
)
int
len
;
char
*
str
;
{
{
abort
();
return
NULL_TREE
;
}
}
void
void
...
...
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