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
9c37957a
Commit
9c37957a
authored
Feb 22, 1998
by
Richard Henderson
Committed by
Richard Henderson
Feb 22, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* objc/Object.m (-error): Call objc_verror with our va_list.
From-SVN: r18167
parent
e3c49f52
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/ChangeLog
+4
-0
gcc/objc/Object.m
+2
-2
No files found.
gcc/ChangeLog
View file @
9c37957a
Sun Feb 22 15:29:48 1998 Richard Henderson <rth@cygnus.com>
* objc/Object.m (-error): Call objc_verror with our va_list.
Sun Feb 22 09:45:39 1998 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* collect2.c (scan_prog_file): Completely cover uses of variable
...
...
gcc/objc/Object.m
View file @
9c37957a
...
...
@@ -213,7 +213,7 @@ extern int errno;
}
}
if
(
parent
=
[
self
superClass
]
)
if
(
(
parent
=
[
self
superClass
])
)
return
[
parent
conformsTo
:
aProtocol
];
else
return
NO
;
...
...
@@ -335,7 +335,7 @@ extern size_t strlen(const char*);
object_is_instance
(
self
)?
"instance"
:
"class"
,
(
aString
!=
NULL
)?
aString
:
""
);
va_start
(
ap
,
aString
);
objc_error
(
self
,
OBJC_ERR_UNKNOWN
,
fmt
,
ap
);
objc_
v
error
(
self
,
OBJC_ERR_UNKNOWN
,
fmt
,
ap
);
va_end
(
ap
);
return
nil
;
#undef FMT
...
...
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