Recent Articles



































Dead code elimination



         


Dead code elimination is a technique used in computer science.

Remove redundant or dead code as shown in this example

void foo() { int a = 24; int b = 25; /* Unused in this function */ int c = a <<2; return; b = 24; /* Not reachable and hence dead code */ }


This article is a stub. You can help BambooWeb by .





  View Live Article   This article is from Wikipedia. All text is available under the terms of the GNU Free Documentation License