Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
st
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
arw
st
Commits
0a50236e
Commit
0a50236e
authored
14 years ago
by
arw
Browse files
Options
Downloads
Patches
Plain Diff
trivial testdata
parents
No related branches found
Branches containing commit
Tags
v0.0
Tags containing commit
Loading
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/test/obj/Makefile
+1
-0
1 addition, 0 deletions
src/test/obj/Makefile
src/test/obj/test1.c
+61
-0
61 additions, 0 deletions
src/test/obj/test1.c
with
62 additions
and
0 deletions
src/test/obj/Makefile
0 → 100644
+
1
−
0
View file @
0a50236e
CFLAGS
=
-gdwarf-2
This diff is collapsed.
Click to expand it.
src/test/obj/test1.c
0 → 100644
+
61
−
0
View file @
0a50236e
#include
<stdint.h>
struct
test_1
{
int
a
;
};
struct
test_2
{
int
a
;
int
b
;
};
struct
test_3
{
int
a
;
double
b
;
uint8_t
c
;
int8_t
d
;
};
struct
test_4
{
int
a
[
3
];
double
b
[
1
];
char
c
[
15
];
int
d
;
};
struct
test_5
{
int
*
a
;
double
*
b
;
void
*
c
;
int
d
;
};
struct
test_6
{
int
a
;
double
b
;
char
c
[
0
];
};
struct
test_7
{
int
a
;
int
b
;
int
c
;
int
d
;
};
struct
test_8
{
int
a
;
struct
test_7
*
b
;
int
c
;
};
int
main
(
int
argc
,
char
**
argv
)
{
struct
test_1
t1
;
struct
test_2
t2
;
struct
test_3
t3
;
struct
test_4
t4
;
struct
test_5
t5
;
struct
test_6
t6
;
struct
test_7
t7
;
struct
test_8
t8
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment