Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
Org.Eclipse.Rtsc.Xdccore
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Eclipse Projects
rtsc
Org.Eclipse.Rtsc.Xdccore
Commits
089f5ae2
Commit
089f5ae2
authored
7 years ago
by
Librarian
Browse files
Options
Downloads
Patches
Plain Diff
xdc-D22
parent
57ed805e
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
README
+18
-9
18 additions, 9 deletions
README
ident.c
+1
-1
1 addition, 1 deletion
ident.c
with
19 additions
and
10 deletions
README
+
18
−
9
View file @
089f5ae2
xdc-D2
1
(corevers:16.0.2.0; B:200,G:200,R:200)
xdc-D2
2
(corevers:16.0.2.0; B:200,G:200,R:200)
eXpanDed C Tools (XDCtools)
eXpanDed C Tools (XDCtools)
...
@@ -77,16 +77,25 @@ DELETIONS
...
@@ -77,16 +77,25 @@ DELETIONS
CHANGES
CHANGES
core rearranged the code that detects function typedefs and prototypes
xdc.rov added new functionality for reading objects pointed to by a pointer
that don't have parameters. The functionality stayed the same, but
and reading any memory location as it is of any chosen type
they are recognized in Type.java and the special case for them is
removed from Glob.java.
unused modes in Glob.java - SYNMODE and CPFMODE are removed together
xdc.runtime Assert_isTrue and the macros invokes from it had several MISRA
with the related code
issues, where integers were used in place of booleans, constants
were signed instead of unsigned, etc.
xdc.rov inital version of ROV for C
unsigned constants now use 'U' instead of 'u'
xdc.runtime MISRA-related changes
Registry used an internal signed int variable where an unsigned
short was enough, and the change fixed a couple of MISRA warnings
In Text.c, there is an operation with two unsigned short operands,
which are automatically promoted to ints or unsigned ints depending
on the sizes of shorts and ints. On Windows, unsigned shorts can be
represented with signed ints, so the promotion causes the operation
to produce a signed int as a result. This causes a warning because
that result is then compared to an unsigned int.
The same problem should have happened on Linux, but the compiler
did not emit the warning. This may need further research.
MRS
MRS
This diff is collapsed.
Click to expand it.
ident.c
+
1
−
1
View file @
089f5ae2
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* ======== ident.c ========
* ======== ident.c ========
*/
*/
#define _VERS_ "@(#)*** xdc-D2
1
"
#define _VERS_ "@(#)*** xdc-D2
2
"
static
char
__NAME
[]
=
_NAME_
;
static
char
__NAME
[]
=
_NAME_
;
static
char
__DATE
[]
=
_DATE_
;
static
char
__DATE
[]
=
_DATE_
;
...
...
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