Commit e5f80b80 by John Kessenich

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

parent 41cf6b54
...@@ -138,9 +138,6 @@ int C_DECL main(int argc, char* argv[]) ...@@ -138,9 +138,6 @@ int C_DECL main(int argc, char* argv[])
case 'i': case 'i':
debugOptions |= EDebugOpIntermediate; debugOptions |= EDebugOpIntermediate;
break; break;
case 'a':
debugOptions |= EDebugOpAssembly;
break;
case 'l': case 'l':
debugOptions |= EDebugOpMemoryLeakMode; debugOptions |= EDebugOpMemoryLeakMode;
break; break;
...@@ -305,7 +302,6 @@ void usage() ...@@ -305,7 +302,6 @@ void usage()
printf("Usage: standalone [ options ] filename\n" printf("Usage: standalone [ options ] filename\n"
"Where: filename = filename ending in .frag* or .vert*\n" "Where: filename = filename ending in .frag* or .vert*\n"
"-i: intermediate (glslang AST)\n" "-i: intermediate (glslang AST)\n"
"-a: assembly dump (LLVM IR)\n"
"-d: delay end (keeps output up in debugger, WIN32)\n" "-d: delay end (keeps output up in debugger, WIN32)\n"
"-l: memory leak mode\n" "-l: memory leak mode\n"
"-s: silent mode (no info log)\n" "-s: silent mode (no info log)\n"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment