diff options
| author | Michael Sullivan <sully@msully.net> | 2012-06-18 12:48:47 -0700 |
|---|---|---|
| committer | Michael Sullivan <sully@msully.net> | 2012-06-18 15:54:37 -0700 |
| commit | b4484d51c14ec3b70ed8d4b6700bc3536a3ee766 (patch) | |
| tree | cb7fabe779a02116b0bcba3d8ef8eb86ce185b4a /src/rt/rust_builtin.cpp | |
| parent | 8967a6672477dce9fb8e765b07df4e54615cf265 (diff) | |
| download | rust-b4484d51c14ec3b70ed8d4b6700bc3536a3ee766.tar.gz rust-b4484d51c14ec3b70ed8d4b6700bc3536a3ee766.zip | |
Some cleanup in the runtime.
Diffstat (limited to 'src/rt/rust_builtin.cpp')
| -rw-r--r-- | src/rt/rust_builtin.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/rt/rust_builtin.cpp b/src/rt/rust_builtin.cpp index 2a65012b52a..4f2510b1bd3 100644 --- a/src/rt/rust_builtin.cpp +++ b/src/rt/rust_builtin.cpp @@ -271,9 +271,8 @@ static void debug_tydesc_helper(type_desc *t) { rust_task *task = rust_get_current_task(); - LOG(task, stdlib, " size %" PRIdPTR ", align %" PRIdPTR - ", first_param 0x%" PRIxPTR, - t->size, t->align, t->first_param); + LOG(task, stdlib, " size %" PRIdPTR ", align %" PRIdPTR, + t->size, t->align); } extern "C" CDECL void |
