diff options
author | Unknown <t-espave@A3479886.redmond.corp.microsoft.com> | 2011-06-15 11:29:10 -0700 |
---|---|---|
committer | Unknown <t-espave@A3479886.redmond.corp.microsoft.com> | 2011-06-15 11:29:10 -0700 |
commit | 379c6a37b7b74656d335235220fef676fdd15c38 (patch) | |
tree | 0cdf2787e78e169316b53058e5e29d2c09cf5221 | |
parent | 2a308ececfc7930383cc4d306607b68b591eab3f (diff) |
Real2Int type error
-rw-r--r-- | BCT/BytecodeTranslator/HeapFactory.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BCT/BytecodeTranslator/HeapFactory.cs b/BCT/BytecodeTranslator/HeapFactory.cs index 3404c190..759f7b31 100644 --- a/BCT/BytecodeTranslator/HeapFactory.cs +++ b/BCT/BytecodeTranslator/HeapFactory.cs @@ -197,7 +197,7 @@ namespace BytecodeTranslator { #region Real number conversions
[RepresentationFor("Int2Real", "function Int2Real(int, Type, Type): Real;")]
public Bpl.Function Int2Real = null;
- [RepresentationFor("Real2Int", "function Real2Int(Real, Type, Type): Real;")]
+ [RepresentationFor("Real2Int", "function Real2Int(Real, Type, Type): int;")]
public Bpl.Function Real2Int = null;
[RepresentationFor("Ref2Real", "function Ref2Real(Ref, Type, Type): Real;")]
public Bpl.Function Ref2Real = null;
|