Wiki Roadmap Timeline Tickets New Ticket Source Search Help / Guide About Trac Login

Changeset 1415:bac3931b3de3

Show
Ignore:
Timestamp:
05/23/09 14:57:22 (3 years ago)
Author:
Frits van Bommel <fvbommel wxs.nl>
branch:
default
Message:

Fix a behavioral change accidentally introduced by the move to the LLVM
commandline system: -output-(bc|ll|s) used to disable generation of an object
file unless explicitly requested with -output-o. Now they do so again.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • gen/main.cpp

    r1403 r1415  
    239239 
    240240    global.params.output_o = 
    241         opts::output_o == cl::BOU_UNSET 
     241        (opts::output_o == cl::BOU_UNSET 
     242            && !(opts::output_bc || opts::output_ll || opts::output_s)) 
    242243        ? OUTPUTFLAGdefault 
    243244        : opts::output_o == cl::BOU_TRUE 
Copyright © 2008, LDC Development Team.