Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mu-impl-fast
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
40
Issues
40
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
mu
mu-impl-fast
Commits
7cf11998
Commit
7cf11998
authored
Aug 02, 2017
by
qinsoon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove compiler warnings from rust 1.19
parent
fdff149f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
7 deletions
+3
-7
src/gc/src/heap/gc/mod.rs
src/gc/src/heap/gc/mod.rs
+1
-1
tests/ir_macros.rs
tests/ir_macros.rs
+2
-0
tests/test_ir/test_types.rs
tests/test_ir/test_types.rs
+0
-6
No files found.
src/gc/src/heap/gc/mod.rs
View file @
7cf11998
...
...
@@ -311,7 +311,7 @@ pub fn start_trace(
lo_space
:
Arc
<
FreeListSpace
>
)
{
// creates root deque
let
(
mut
worker
,
stealer
)
=
deque
();
let
(
worker
,
stealer
)
=
deque
();
while
!
work_stack
.is_empty
()
{
worker
.push
(
work_stack
.pop
()
.unwrap
());
...
...
tests/ir_macros.rs
View file @
7cf11998
...
...
@@ -12,6 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#![allow(unused_macros)]
macro_rules!
typedef
{
// int, floating point
((
$vm
:
expr
)
$name
:
ident
=
mu_int
(
$len
:
expr
))
=>
{
...
...
tests/test_ir/test_types.rs
View file @
7cf11998
...
...
@@ -24,12 +24,6 @@ macro_rules! assert_type (
)
);
macro_rules!
println_type
(
(
$test:expr
)
=>
(
println!
(
"{}"
,
$test
)
)
);
/// create one of each MuType
fn
create_types
()
->
Vec
<
P
<
MuType
>>
{
let
mut
types
=
vec!
[];
...
...
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