citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit 8817305ae50c3b57bebf11ecc75300cbdf48a129
parent 24350af93e344036fd166de4fc4aa7300f5e1506
Author: Kyle Milz <kyle@0x30.net>
Date:   Tue,  9 Aug 2016 23:15:02 -0600

src: use the term loops instead of statements

Diffstat:
Msrc/check.in | 6+++---
Msrc/inst_visitor.h | 6+++---
Mt/inst_dowhile.t | 2+-
Mt/inst_for.t | 2+-
Mt/inst_while.t | 2+-
5 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/check.in b/src/check.in @@ -35,9 +35,9 @@ FINE[1]="Lines of instrumentation header" FINE[2]="Functions called 'main'" FINE[3]="Function definitions" FINE[4]="If statements" -FINE[5]="For statements" -FINE[6]="While statements" -FINE[7]="Do while statements" +FINE[5]="For loops" +FINE[6]="While loops" +FINE[7]="Do while loops" FINE[8]="Switch statements" FINE[9]="Return statement values" FINE[10]="Call expressions" diff --git a/src/inst_visitor.h b/src/inst_visitor.h @@ -24,9 +24,9 @@ public: "Functions called 'main'", "Function definitions", "If statements", - "For statements", - "While statements", - "Do while statements", + "For loops", + "While loops", + "Do while loops", "Switch statements", "Return statement values", "Call expressions", diff --git a/t/inst_dowhile.t b/t/inst_dowhile.t @@ -39,7 +39,7 @@ Instrumentation of '' finished: 32 Lines of instrumentation header 1 Functions called '' 1 Function definitions - 1 Do while statements + 1 Do while loops 1 Return statement values 11 Total statements Writing modified source to ''. diff --git a/t/inst_for.t b/t/inst_for.t @@ -43,7 +43,7 @@ Instrumentation of '' finished: 32 Lines of instrumentation header 1 Functions called '' 4 Function definitions - 1 For statements + 1 For loops 1 Return statement values 155 Total statements Writing modified source to ''. diff --git a/t/inst_while.t b/t/inst_while.t @@ -41,7 +41,7 @@ Instrumentation of '' finished: 32 Lines of instrumentation header 1 Functions called '' 1 Function definitions - 2 While statements + 2 While loops 1 Return statement values 18 Total statements Writing modified source to ''.