From b0878bf8ef34e9c1db446d1c82990bdb55df0f04 Mon Sep 17 00:00:00 2001 From: David Nadlinger Date: Sun, 14 Oct 2012 05:05:48 +0200 Subject: [PATCH] Fixed gccbuiltins module declaration. --- utils/gen_gccbuiltins.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/utils/gen_gccbuiltins.cpp b/utils/gen_gccbuiltins.cpp index 1243c24b..228ce9b4 100644 --- a/utils/gen_gccbuiltins.cpp +++ b/utils/gen_gccbuiltins.cpp @@ -114,7 +114,7 @@ struct ActionImpl : TableGenAction bool operator()(raw_ostream& os, RecordKeeper& records) { - os << "module llvm.gccbuiltins_"; + os << "module ldc.gccbuiltins_"; os << arch; os << "; \n\nimport core.simd;\n\n"; @@ -156,4 +156,3 @@ int main(int argc, char** argv) ActionImpl act(argv[2]); return TableGenMain(argv[0], act); } -