Add getStage() and getIntermediate() methods for consumers.  Also removed dead options and update test file.


git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@26126 e7fa87d3-cd2b-0410-9028-fcbf551c1848
diff --git a/StandAlone/StandAlone.cpp b/StandAlone/StandAlone.cpp
index e0faecf..da6f10a 100644
--- a/StandAlone/StandAlone.cpp
+++ b/StandAlone/StandAlone.cpp
@@ -867,7 +867,6 @@
     const int maxSourceStrings = 5;
     char** return_data = (char**)malloc(sizeof(char *) * (maxSourceStrings+1));
 
-    //return_data[MAX_SOURCE_STRINGS]=NULL;
 	if (errorCode) {
         printf("Error: unable to open input file: %s\n", fileName);
         return 0;
@@ -878,10 +877,9 @@
 
 	fseek(in, 0, SEEK_SET);
 	
-	
 	if (!(fdata = (char*)malloc(count+2))) {
-            printf("Error allocating memory\n");
-            return 0;
+        printf("Error allocating memory\n");
+        return 0;
     }
 	if (fread(fdata,1,count, in)!=count) {
             printf("Error reading input file: %s\n", fileName);