Skip to content

Commit

Permalink
Fix typo in u16 debug info
Browse files Browse the repository at this point in the history
  • Loading branch information
auroranockert committed Apr 8, 2013
1 parent c929363 commit e06b982
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

5 comments on commit e06b982

@bors
Copy link
Contributor

@bors bors commented on e06b982 Apr 9, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from catamorphism
at auroranockert@e06b982

@bors
Copy link
Contributor

@bors bors commented on e06b982 Apr 9, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging JensNockert/rust/u16-debuginfo-typo = e06b982 into auto

@bors
Copy link
Contributor

@bors bors commented on e06b982 Apr 9, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

JensNockert/rust/u16-debuginfo-typo = e06b982 merged ok, testing candidate = 22f65e9

@bors
Copy link
Contributor

@bors bors commented on e06b982 Apr 9, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors
Copy link
Contributor

@bors bors commented on e06b982 Apr 9, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fast-forwarding incoming to auto = 22f65e9

Please sign in to comment.