diff --git a/dmd/mars.c b/dmd/mars.c index b27520c4..c7e8db93 100644 --- a/dmd/mars.c +++ b/dmd/mars.c @@ -61,7 +61,7 @@ Global::Global() written = "written by Walter Bright and Tomas Lindquist Olsen"; version = "v1.067"; ldc_version = "LDC trunk"; - llvm_version = "LLVM 2.9"; + llvm_version = "LLVM 3.0"; global.structalign = 8; // This should only be used as a global, so the other fields are diff --git a/dmd/mem.c b/dmd/mem.c index 3660cd85..35aec3cf 100644 --- a/dmd/mem.c +++ b/dmd/mem.c @@ -262,4 +262,8 @@ void Mem::mark(void *pointer) { } +void Mem::setStackBottom(void */*stackbottom*/) +{ +} + #endif // USE_BOEHM_GC diff --git a/dmd2/mars.c b/dmd2/mars.c index 59ffa92e..f05ea012 100644 --- a/dmd2/mars.c +++ b/dmd2/mars.c @@ -103,7 +103,7 @@ Global::Global() version = "v2.056"; #if IN_LLVM ldc_version = "LDC trunk"; - llvm_version = "LLVM 2.9"; + llvm_version = "LLVM 3.0"; #endif global.structalign = 8; diff --git a/gen/main.cpp b/gen/main.cpp index 3ca170a2..5cc83088 100644 --- a/gen/main.cpp +++ b/gen/main.cpp @@ -85,8 +85,8 @@ static cl::list debuglibs("debuglib", void printVersion() { printf("LLVM D Compiler %s\nbased on DMD %s and %s\n%s\n%s\n", global.ldc_version, global.version, global.llvm_version, global.copyright, global.written); - printf("D Language Documentation: http://www.digitalmars.com/d/1.0/index.html\n" - "LDC Homepage: http://www.dsource.org/projects/ldc\n"); + printf("D Language Documentation: http://d-programming-language.org/index.html\n" + "LDC Homepage: https://github.com/ldc-developers/ldc\n"); } // Helper function to handle -d-debug=* and -d-version=* diff --git a/gen/todebug.cpp b/gen/todebug.cpp index 18db8014..80dfb4a8 100644 --- a/gen/todebug.cpp +++ b/gen/todebug.cpp @@ -444,7 +444,7 @@ void DtoDwarfCompileUnit(Module* m) global.params.symdebug == 2 ? DW_LANG_C : DW_LANG_D, srcname, srcpath, - "LDC (http://www.dsource.org/projects/ldc)", + "LDC (https://github.com/ldc-developers/ldc)", false, // isOptimized TODO llvm::StringRef(), // Flags TODO 1 // Runtime Version TODO