소스 검색

Generate kcachegrind reports under line granularity

Callgrind reports are generated with line granularity since kcachegrind
can take advantage of the information. However, kcachegrind reports were
not being generated with that granularity, creating an unnecessary difference.
Raul Silvera 9 년 전
부모
커밋
4da44d6adb
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      internal/driver/driver.go

+ 1
- 1
internal/driver/driver.go 파일 보기

@@ -135,7 +135,7 @@ func applyCommandOverrides(cmd []string, v variables) variables {
135 135
 		v.set("addressnoinlines", "t")
136 136
 	case "peek":
137 137
 		trim, focus, hide = false, false, false
138
-	case "callgrind", "list":
138
+	case "kcachegrind", "callgrind", "list":
139 139
 		v.set("nodecount", "0")
140 140
 		v.set("lines", "t")
141 141
 	case "text", "top", "topproto":