Changed action names to reflect action taken
This commit is contained in:
parent
2b6f5b9b8d
commit
3db2add75c
1 changed files with 13 additions and 13 deletions
|
@ -1,52 +1,52 @@
|
||||||
name "system-call interface module"
|
name "system-call interface module lint library"
|
||||||
action "make lintlib"
|
action "make lintlib"
|
||||||
dir system
|
dir system
|
||||||
end
|
end
|
||||||
name "string routines module"
|
name "string routines module lint library"
|
||||||
action "make lintlib"
|
action "make lintlib"
|
||||||
dir string
|
dir string
|
||||||
end
|
end
|
||||||
name "formatted print module"
|
name "formatted print module lint library"
|
||||||
action "make lintlib"
|
action "make lintlib"
|
||||||
dir print
|
dir print
|
||||||
end
|
end
|
||||||
name "assertion module"
|
name "assertion module lint library"
|
||||||
action "make lintlib"
|
action "make lintlib"
|
||||||
dir assert
|
dir assert
|
||||||
end
|
end
|
||||||
name "memory allocation module"
|
name "memory allocation module lint library"
|
||||||
action "make lintlib"
|
action "make lintlib"
|
||||||
dir alloc
|
dir alloc
|
||||||
end
|
end
|
||||||
name "fast, linear time malloc"
|
name "fast, linear time malloc lint library"
|
||||||
action "make lintlib"
|
action "make lintlib"
|
||||||
dir malloc
|
dir malloc
|
||||||
end
|
end
|
||||||
name "identifier table module"
|
name "identifier table module lint library"
|
||||||
action "make lintlib"
|
action "make lintlib"
|
||||||
dir idf
|
dir idf
|
||||||
end
|
end
|
||||||
name "input module"
|
name "input module lint library"
|
||||||
action "make lintlib"
|
action "make lintlib"
|
||||||
dir input
|
dir input
|
||||||
end
|
end
|
||||||
name "ACK-object reading and writing module"
|
name "ACK-object reading and writing module lint library"
|
||||||
action "make lintlib"
|
action "make lintlib"
|
||||||
dir object
|
dir object
|
||||||
end
|
end
|
||||||
name "EM code generation module"
|
name "EM code generation module lint library"
|
||||||
action "make lintlib"
|
action "make lintlib"
|
||||||
dir em_code
|
dir em_code
|
||||||
end
|
end
|
||||||
name "EM messages generation module"
|
name "EM messages generation module lint library"
|
||||||
action "make lintlib"
|
action "make lintlib"
|
||||||
dir em_mes
|
dir em_mes
|
||||||
end
|
end
|
||||||
name "EM-code reading module"
|
name "EM-code reading module lint library"
|
||||||
action "make lintlib"
|
action "make lintlib"
|
||||||
dir read_em
|
dir read_em
|
||||||
end
|
end
|
||||||
name "Floating point arithmetic module"
|
name "Floating point arithmetic module lint library"
|
||||||
action "make lintlib"
|
action "make lintlib"
|
||||||
dir flt_arith
|
dir flt_arith
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue