aboutsummaryrefslogtreecommitdiffstats
path: root/src/ghdldrv/ghdl_llvm.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/ghdldrv/ghdl_llvm.adb')
-rw-r--r--src/ghdldrv/ghdl_llvm.adb6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ghdldrv/ghdl_llvm.adb b/src/ghdldrv/ghdl_llvm.adb
index 4c4c948d3..c170c4b56 100644
--- a/src/ghdldrv/ghdl_llvm.adb
+++ b/src/ghdldrv/ghdl_llvm.adb
@@ -1,5 +1,5 @@
-- GHDL driver for mcode/jit.
--- Copyright (C) 2002, 2003, 2004, 2005 Tristan Gingold
+-- Copyright (C) 2002-2016 Tristan Gingold
--
-- GHDL is free software; you can redistribute it and/or modify it under
-- the terms of the GNU General Public License as published by the Free
@@ -20,6 +20,7 @@ with Ghdllocal;
with Ghdlprint;
with Ghdldrv;
with Ghdlvpi;
+with Ghdlxml;
procedure Ghdl_Llvm is
begin
@@ -28,9 +29,10 @@ begin
Ghdlmain.Version_String := new String'("llvm code generator");
Ghdldrv.Backend := Ghdldrv.Backend_Llvm;
Ghdldrv.Register_Commands;
- Ghdlvpi.Register_Commands;
Ghdllocal.Register_Commands;
Ghdlprint.Register_Commands;
+ Ghdlvpi.Register_Commands;
+ Ghdlxml.Register_Commands;
Ghdlmain.Register_Commands;
Ghdlmain.Main;
end Ghdl_Llvm;