diff options
| author | Graydon Hoare <[email protected]> | 2010-10-12 16:51:27 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-10-12 16:51:27 -0700 |
| commit | 69ae63d4b02b15d47ab90a4bf96880329601f116 (patch) | |
| tree | a54493f852b7c8c187cb363a09f0f223efae4e1a /src/boot/be/asm.ml | |
| parent | rustc: Add mutability to tuple literals (diff) | |
| download | rust-69ae63d4b02b15d47ab90a4bf96880329601f116.tar.xz rust-69ae63d4b02b15d47ab90a4bf96880329601f116.zip | |
Fix horribly embarassing signedness bug in backend, plus related regressions.
Diffstat (limited to 'src/boot/be/asm.ml')
| -rw-r--r-- | src/boot/be/asm.ml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/boot/be/asm.ml b/src/boot/be/asm.ml index 4b05e347..939b297c 100644 --- a/src/boot/be/asm.ml +++ b/src/boot/be/asm.ml @@ -590,8 +590,9 @@ and lower_frag | WORD (m,e) -> iflog sess (fun _ -> - log sess "lowering word %s" - (string_of_ty_mach m)); + log sess "lowering word %s with val %s" + (string_of_ty_mach m) + (fmt_to_str fmt_frag frag)); word (bytes_of_ty_mach m) (mach_is_signed m) e | ALIGN_FILE (n, frag) -> |