Skip to content

Commit

Permalink
auto merge of #5786 : JensNockert/rust/u16-debuginfo-typo, r=catamorp…
Browse files Browse the repository at this point in the history
…hism

A small typo in debuginfo.rs related to the u16 type.
  • Loading branch information
bors committed Apr 9, 2013
2 parents 786ae01 + e06b982 commit 22f65e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustc/middle/trans/debuginfo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ fn create_basic_type(cx: @CrateContext, t: ty::t, span: span)
ty::ty_uint(uint_ty) => match uint_ty {
ast::ty_u => (~"uint", DW_ATE_unsigned),
ast::ty_u8 => (~"u8", DW_ATE_unsigned),
ast::ty_u16 => (~"i16", DW_ATE_unsigned),
ast::ty_u16 => (~"u16", DW_ATE_unsigned),
ast::ty_u32 => (~"u32", DW_ATE_unsigned),
ast::ty_u64 => (~"u64", DW_ATE_unsigned)
},
Expand Down

0 comments on commit 22f65e9

Please sign in to comment.