Changeset 1415:bac3931b3de3
- 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
| r1403 |
r1415 |
|
| 239 | 239 | |
|---|
| 240 | 240 | 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)) |
|---|
| 242 | 243 | ? OUTPUTFLAGdefault |
|---|
| 243 | 244 | : opts::output_o == cl::BOU_TRUE |
|---|