Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
QueryR
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Julien Lopez
QueryR
Commits
573de380
Commit
573de380
authored
8 years ago
by
Adam Welc
Committed by
oracle
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
SET_TYPEOF problem fix.
parent
6575228b
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
com.oracle.truffle.r.native/fficall/src/common/inlined_fastr.c
+3
-2
3 additions, 2 deletions
...racle.truffle.r.native/fficall/src/common/inlined_fastr.c
with
3 additions
and
2 deletions
com.oracle.truffle.r.native/fficall/src/common/inlined_fastr.c
+
3
−
2
View file @
573de380
...
...
@@ -191,6 +191,8 @@ INLINE_FUN SEXP listAppend(SEXP s, SEXP t)
}
SEXP
SET_TYPEOF_FASTR
(
SEXP
x
,
int
v
);
/* Language based list constructs. These are identical to the list */
/* constructs, but the results can be evaluated. */
...
...
@@ -199,8 +201,7 @@ INLINE_FUN SEXP listAppend(SEXP s, SEXP t)
INLINE_FUN
SEXP
lcons
(
SEXP
car
,
SEXP
cdr
)
{
SEXP
e
=
cons
(
car
,
cdr
);
e
=
SET_TYPEOF_FASTR
(
e
,
LANGSXP
);
return
e
;
return
SET_TYPEOF_FASTR
(
e
,
LANGSXP
);
}
INLINE_FUN
SEXP
lang1
(
SEXP
s
)
...
...
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