diff options
Diffstat (limited to 'src/rt/rust_cc.cpp')
| -rw-r--r-- | src/rt/rust_cc.cpp | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/rt/rust_cc.cpp b/src/rt/rust_cc.cpp index b0a1804d096..41cc1684290 100644 --- a/src/rt/rust_cc.cpp +++ b/src/rt/rust_cc.cpp @@ -1,19 +1,17 @@ // Rust cycle collector. Temporary, but will probably stick around for some // time until LLVM's GC infrastructure is more mature. -#include "rust_debug.h" -#include "rust_internal.h" -#include "rust_shape.h" -#include "rust_task.h" -#include <cassert> -#include <cstdio> -#include <cstdlib> #include <map> #include <set> #include <vector> -#include <stdint.h> #include <ios> +#include "rust_globals.h" +#include "rust_cc.h" +#include "rust_debug.h" +#include "rust_shape.h" +#include "rust_task.h" + // The number of allocations Rust code performs before performing cycle // collection. #define RUST_CC_FREQUENCY 5000 |
