Browse Source

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 years ago
parent
commit
4da44d6adb
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      internal/driver/driver.go

+ 1
- 1
internal/driver/driver.go View File

135
 		v.set("addressnoinlines", "t")
135
 		v.set("addressnoinlines", "t")
136
 	case "peek":
136
 	case "peek":
137
 		trim, focus, hide = false, false, false
137
 		trim, focus, hide = false, false, false
138
-	case "callgrind", "list":
138
+	case "kcachegrind", "callgrind", "list":
139
 		v.set("nodecount", "0")
139
 		v.set("nodecount", "0")
140
 		v.set("lines", "t")
140
 		v.set("lines", "t")
141
 	case "text", "top", "topproto":
141
 	case "text", "top", "topproto":