We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 305bf12 commit 1d50972Copy full SHA for 1d50972
src/librustc_codegen_llvm/debuginfo/source_loc.rs
@@ -60,7 +60,7 @@ pub fn set_debug_location(
60
let col_used = if bx.sess().target.target.options.is_like_msvc {
61
UNKNOWN_COLUMN_NUMBER
62
} else {
63
- col as c_uint
+ (col + 1) as c_uint
64
};
65
debug!("setting debug location to {} {}", line, col);
66
0 commit comments