Update the discriminator assignment algorithm
authorDehao Chen <dehao@google.com>
Fri, 30 Oct 2015 02:38:29 +0000 (02:38 +0000)
committerDehao Chen <dehao@google.com>
Fri, 30 Oct 2015 02:38:29 +0000 (02:38 +0000)
* If a scope has already been assigned a discriminator, do not reassign a nested discriminator for it.
* If the file and line both match, even if the column does not match, we should assign a new discriminator for the stmt.

original code:
; #1 int foo(int i) {
; #2 if (i == 3 || i == 5) return 100; else return 99;
; #3 }

; i == 3: discriminator 0
; i == 5: discriminator 2
; return 100: discriminator 1
; return 99: discriminator 3

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@251680 91177308-0d34-0410-b5e6-96231b3b80d8


No differences found