From: David Majnemer Date: Tue, 12 Jan 2016 21:58:20 +0000 (+0000) Subject: [CodeView] Initialize column-end to zero X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=469e6b09820b91baa7536a6343904ee0913103c6;hp=469e6b09820b91baa7536a6343904ee0913103c6;ds=inline [CodeView] Initialize column-end to zero CodeView, unlike DWARF, can associate code with a range of columns. However, LLVM can only represent a single column position internally. We used to claim that the end column and start column were the same which yielded less than satisfactory results: we would stop printing at the _beginning_ of the source expression! Instead, mark the column-end as 'zero' to indicate that we don't have one (as per the documentation for IDiaLineNumber::get_lineNumberEnd). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@257528 91177308-0d34-0410-b5e6-96231b3b80d8 ---