diff options
author | Tristan Gingold <tgingold@free.fr> | 2016-07-31 17:17:00 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2016-08-02 08:01:36 +0200 |
commit | cdb323b1dbfccbcff5c63804ff73e6e86e4d05e8 (patch) | |
tree | 5886de13f70a7235dd8b114806d27614972c8bd0 /src/vhdl/simulate/execution.adb | |
parent | 55da78e95df865ba2e2048e6546e4fffcfe020da (diff) | |
download | ghdl-cdb323b1dbfccbcff5c63804ff73e6e86e4d05e8.tar.gz ghdl-cdb323b1dbfccbcff5c63804ff73e6e86e4d05e8.tar.bz2 ghdl-cdb323b1dbfccbcff5c63804ff73e6e86e4d05e8.zip |
Rewrite scan error messages: use formatting.
Diffstat (limited to 'src/vhdl/simulate/execution.adb')
-rw-r--r-- | src/vhdl/simulate/execution.adb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vhdl/simulate/execution.adb b/src/vhdl/simulate/execution.adb index a788255d8..936cbd3f3 100644 --- a/src/vhdl/simulate/execution.adb +++ b/src/vhdl/simulate/execution.adb @@ -1470,8 +1470,8 @@ package body Execution is end; when others => - Error_Msg_Elab ("execute_implicit_function: unimplemented " & - Iir_Predefined_Functions'Image (Func), Expr); + Error_Msg_Elab (Expr, "execute_implicit_function: unimplemented " & + Iir_Predefined_Functions'Image (Func)); raise Internal_Error; end case; return Result; |