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
d291a19a
Commit
d291a19a
authored
Feb 28, 2001
by
Ovidiu Predescu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added new test from Nicola Pero.
From-SVN: r40123
parent
10493d77
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
69 additions
and
0 deletions
+69
-0
gcc/testsuite/objc/execute/bycopy-3.m
+69
-0
No files found.
gcc/testsuite/objc/execute/bycopy-3.m
0 → 100644
View file @
d291a19a
/*
* Contributed by Nicola Pero <nicola@brainstorm.co.uk>
* Wed Feb 28 12:27:03 CET 2001
*/
/*
* This test contains some no-op code which is needed to keep it
* compile on broken gcc 3.x. Anyway, the no-op code does not
* interfere with what we are testing, which is that the `bycopy'
* keyword generates the _F_BYCOPY qualifier for the return type. */
#include <objc/objc.h>
#include <objc/Object.h>
#include <objc/Protocol.h>
#include <objc/encoding.h>
@protocol
MyProtocol
+
(
bycopy
id
<
MyProtocol
>
)
bycopyMethod
;
@end
/* This no-op class to keep it compile under broken gcc 3.x */
@interface
MyObject
:
Object
<
MyProtocol
>
@end
@implementation
MyObject
+
(
bycopy
id
<
MyProtocol
>
)
bycopyMethod
{
return
[
MyObject
alloc
];
}
@end
int
main
(
void
)
{
struct
objc_method_description
*
method
;
const
char
*
method_types
;
unsigned
qualifiers
;
Protocol
*
protocol
;
/* This no-op command is needed to keep the test compile on broken
gcc 3.x */
MyObject
*
object
=
[
MyObject
bycopyMethod
];
/* Get the protocol object */
protocol
=
@protocol
(
MyProtocol
);
/* Ask to the protocol for the description of the method bycopyMethod */
method
=
[
protocol
descriptionForClassMethod
:
@selector
(
bycopyMethod
)];
if
(
method
==
NULL
)
{
printf
(
"Could not find method bycopyMethod in protocol!
\n
"
);
exit
(
1
);
}
/* Get the method types for the method - which encode return type,
arguments etc. */
method_types
=
method
->
types
;
/* Get the qualifiers for the return type */
qualifiers
=
objc_get_type_qualifiers
(
method_types
);
/* If _F_BYCOPY is not there, the compiler is broken */
if
(
!
(
qualifiers
&
_F_BYCOPY
))
{
printf
(
"Failed - selector does not contain _F_BYCOPY qualifier!
\n
"
);
exit
(
1
);
}
/* Else, happy end */
return
0
;
}
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