IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Can we delete unused cobol code in a program automatically?


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
rkprasanth_m

New User


Joined: 22 Jun 2006
Posts: 44

PostPosted: Thu Aug 02, 2007 4:17 pm
Reply with quote

Is there any tools or compiler options to delete unused code and never called procedures in COBOL programs.

I mean I just want to cut the branch of a tree, and the clean-up of all sub-branches should be done automatically.
Back to top
View user's profile Send private message
William Thompson

Global Moderator


Joined: 18 Nov 2006
Posts: 3156
Location: Tucson AZ

PostPosted: Thu Aug 02, 2007 4:23 pm
Reply with quote

Automatically? I don't think so......
I do know that code that is not referenced or considered unreachable by the optimizer is not compiled......
Back to top
View user's profile Send private message
rkprasanth_m

New User


Joined: 22 Jun 2006
Posts: 44

PostPosted: Thu Aug 02, 2007 4:36 pm
Reply with quote

thank You..

Actually, I wanted it to be removed from source code. Anyway, does compiler listing displays unreachable code?
Back to top
View user's profile Send private message
William Thompson

Global Moderator


Joined: 18 Nov 2006
Posts: 3156
Location: Tucson AZ

PostPosted: Thu Aug 02, 2007 4:48 pm
Reply with quote

rkprasanth_m wrote:
Actually, I wanted it to be removed from source code.
Yes, I understood that.....
Quote:
Anyway, does compiler listing displays unreachable code?
I (vaguely) recall seeing I-type error messages, you could try a little test program and see if you can generate some....
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Thu Aug 02, 2007 4:59 pm
Reply with quote

You can always check the cross reference listing of the compile step. If a paragraph is not referenced.

But then you have to deal with PERFORM THRU's and fall-thrus (from poor code).

suggest that before removing, you comment-out the code with comments as to why you are removing the code.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> COBOL Programming

 


Similar Topics
Topic Forum Replies
No new posts Replace each space in cobol string wi... COBOL Programming 3
No new posts Using API Gateway from CICS program CICS 0
No new posts DELETE SPUFI DB2 1
No new posts COBOL -Linkage Section-Case Sensitive COBOL Programming 1
No new posts DSNTIAUL driven delete IBM Tools 0
Search our Forums:

Back to Top