File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ /**
2+ * Compiler implementation of the
3+ * $(LINK2 http://www.dlang.org, D programming language).
4+ *
5+ * Copyright: Copyright (c) 1999-2017 by The D Language Foundation, All Rights Reserved
6+ * Authors: $(LINK2 http://www.digitalmars.com, Walter Bright)
7+ * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
8+ * Source: $(LINK2 https://github.com/dlang/dmd/blob/master/src/dmd/compiler.d, _compiler.d)
9+ */
10+
11+ module dmd.compiler ;
12+
13+ struct Compiler
14+ {
15+ const (char )* vendor; // Compiler backend name
16+ }
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ import core.stdc.stdio;
1919import dmd.root.array;
2020import dmd.root.filename;
2121import dmd.root.outbuffer;
22+ import dmd.compiler;
2223import dmd.identifier;
2324
2425template xversion (string s)
@@ -215,11 +216,6 @@ struct Param
215216 const (char )* mapfile;
216217}
217218
218- struct Compiler
219- {
220- const (char )* vendor; // Compiler backend name
221- }
222-
223219alias structalign_t = uint ;
224220
225221// magic value means "match whatever the underlying C compiler does"
You can’t perform that action at this time.
0 commit comments