mirror of https://github.com/aamine/cbc
r4966@macbookpro: aamine | 2009-05-26 11:59:25 +0900
* net/loveruby/cflat/compiler/Options.java: allow --verbose-asm too. git-svn-id: file:///Users/aamine/c/gitwork/public/cbc/trunk@4254 1b9489fe-b721-0410-924e-b54b9192deb8
This commit is contained in:
parent
c30f91a58a
commit
e6b6f20d24
|
@ -1,3 +1,8 @@
|
||||||
|
Tue May 26 11:59:08 2009 Minero Aoki <aamine@loveruby.net>
|
||||||
|
|
||||||
|
* net/loveruby/cflat/compiler/Options.java: allow --verbose-asm
|
||||||
|
too.
|
||||||
|
|
||||||
Tue May 26 11:50:11 2009 Minero Aoki <aamine@loveruby.net>
|
Tue May 26 11:50:11 2009 Minero Aoki <aamine@loveruby.net>
|
||||||
|
|
||||||
* net/loveruby/cflat/compiler/Options.java: --verbose-asm ->
|
* net/loveruby/cflat/compiler/Options.java: --verbose-asm ->
|
||||||
|
|
|
@ -176,7 +176,8 @@ class Options {
|
||||||
}
|
}
|
||||||
genOptions.setOptimizationLevel(type.equals("0") ? 0 : 1);
|
genOptions.setOptimizationLevel(type.equals("0") ? 0 : 1);
|
||||||
}
|
}
|
||||||
else if (arg.equals("-fverbose-asm")) {
|
else if (arg.equals("--verbose-asm")
|
||||||
|
|| arg.equals("-fverbose-asm")) {
|
||||||
genOptions.generateVerboseAsm();
|
genOptions.generateVerboseAsm();
|
||||||
}
|
}
|
||||||
else if (arg.startsWith("-Wa,")) {
|
else if (arg.startsWith("-Wa,")) {
|
||||||
|
|
Loading…
Reference in New Issue