Remove the -a option, it doesn't belong here.

git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@22166 e7fa87d3-cd2b-0410-9028-fcbf551c1848
This commit is contained in:
John Kessenich 2013-06-25 18:31:47 +00:00
parent 41cf6b540b
commit e5f80b8054

View File

@ -138,9 +138,6 @@ int C_DECL main(int argc, char* argv[])
case 'i':
debugOptions |= EDebugOpIntermediate;
break;
case 'a':
debugOptions |= EDebugOpAssembly;
break;
case 'l':
debugOptions |= EDebugOpMemoryLeakMode;
break;
@ -305,7 +302,6 @@ void usage()
printf("Usage: standalone [ options ] filename\n"
"Where: filename = filename ending in .frag* or .vert*\n"
"-i: intermediate (glslang AST)\n"
"-a: assembly dump (LLVM IR)\n"
"-d: delay end (keeps output up in debugger, WIN32)\n"
"-l: memory leak mode\n"
"-s: silent mode (no info log)\n"