Changeset 751:dc8b8b7ea0c1
- Timestamp:
- 11/03/08 06:35:29
(2 months ago)
- Author:
- Christian Kamm <kamm incasoftware de>
- branch:
- default
- Message:
Fix compile-time warnings. Adjust include in d-asm-i386.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r737 |
r751 |
|
| 140 | 140 | |
|---|
| 141 | 141 | // llvm |
|---|
| 142 | | virtual void toObjFile(); // compile to .obj file |
|---|
| | 142 | virtual void toObjFile(int unused = 0); // compile to .obj file |
|---|
| 143 | 143 | }; |
|---|
| 144 | 144 | |
|---|
| r708 |
r751 |
|
| 614 | 614 | } |
|---|
| 615 | 615 | |
|---|
| 616 | | void Module::semantic() |
|---|
| | 616 | void Module::semantic(Scope* unused_sc) |
|---|
| 617 | 617 | { int i; |
|---|
| 618 | 618 | |
|---|
| … | … | |
| 662 | 662 | } |
|---|
| 663 | 663 | |
|---|
| 664 | | void Module::semantic2() |
|---|
| | 664 | void Module::semantic2(Scope* unused_sc) |
|---|
| 665 | 665 | { int i; |
|---|
| 666 | 666 | |
|---|
| … | … | |
| 701 | 701 | } |
|---|
| 702 | 702 | |
|---|
| 703 | | void Module::semantic3() |
|---|
| | 703 | void Module::semantic3(Scope* unused_sc) |
|---|
| 704 | 704 | { int i; |
|---|
| 705 | 705 | |
|---|
| r703 |
r751 |
|
| 127 | 127 | void parse(); // syntactic parse |
|---|
| 128 | 128 | #endif |
|---|
| 129 | | void semantic(); // semantic analysis |
|---|
| 130 | | void semantic2(); // pass 2 semantic analysis |
|---|
| 131 | | void semantic3(); // pass 3 semantic analysis |
|---|
| | 129 | void semantic(Scope* unused_sc = NULL); // semantic analysis |
|---|
| | 130 | void semantic2(Scope* unused_sc = NULL); // pass 2 semantic analysis |
|---|
| | 131 | void semantic3(Scope* unused_sc = NULL); // pass 3 semantic analysis |
|---|
| 132 | 132 | void inlineScan(); // scan for functions to inline |
|---|
| 133 | 133 | #ifdef _DH |
|---|
| r468 |
r751 |
|
| 2 | 2 | // Released under the Artistic License found in dmd/artistic.txt |
|---|
| 3 | 3 | |
|---|
| 4 | | #include "dmd/id.h" |
|---|
| | 4 | #include "id.h" |
|---|
| 5 | 5 | |
|---|
| 6 | 6 | typedef enum { |
|---|
| r737 |
r751 |
|
| 880 | 880 | /* ================================================================== */ |
|---|
| 881 | 881 | |
|---|
| 882 | | void Declaration::toObjFile() |
|---|
| | 882 | void Declaration::toObjFile(int unused) |
|---|
| 883 | 883 | { |
|---|
| 884 | 884 | Logger::println("Ignoring Declaration::toObjFile for %s", toChars()); |
|---|