Internals: Detab and fix spacing style issues in some include files. No functional change.
This commit is contained in:
parent
f818ddc71c
commit
b23fc06388
|
|
@ -238,5 +238,3 @@ void VerilatedRestore::fill() VL_MT_UNSAFE_ONE {
|
||||||
|
|
||||||
//=============================================================================
|
//=============================================================================
|
||||||
// Serialization of types
|
// Serialization of types
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -201,4 +201,3 @@ int main(int argc, char** argv, char** env) {
|
||||||
// Local Variables:
|
// Local Variables:
|
||||||
// compile-command: "v4make bin/verilator_coverage --debugi 9 test_regress/t/t_vlcov_data_*.dat"
|
// compile-command: "v4make bin/verilator_coverage --debugi 9 test_regress/t/t_vlcov_data_*.dat"
|
||||||
// End:
|
// End:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -237,7 +237,8 @@ void VlcTop::annotateOutputFiles(const string& dirname) {
|
||||||
first = false;
|
first = false;
|
||||||
// Multiple columns on same line; print line just once
|
// Multiple columns on same line; print line just once
|
||||||
string indent;
|
string indent;
|
||||||
for (string::const_iterator pos=line.begin(); pos!=line.end() && isspace(*pos); ++pos) {
|
for (string::const_iterator pos=line.begin();
|
||||||
|
pos!=line.end() && isspace(*pos); ++pos) {
|
||||||
indent += *pos;
|
indent += *pos;
|
||||||
}
|
}
|
||||||
line = indent + "verilator_coverage: (next point on previous line)\n";
|
line = indent + "verilator_coverage: (next point on previous line)\n";
|
||||||
|
|
@ -258,4 +259,3 @@ void VlcTop::annotate(const string& dirname) {
|
||||||
annotateCalcNeeded();
|
annotateCalcNeeded();
|
||||||
annotateOutputFiles(dirname);
|
annotateOutputFiles(dirname);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue