diff options
author | Mike Barnett <mbarnett@microsoft.com> | 2011-05-29 20:26:26 -0700 |
---|---|---|
committer | Mike Barnett <mbarnett@microsoft.com> | 2011-05-29 20:26:26 -0700 |
commit | f0d77f50a0f7d9dd88f6508d33ce2b81f24ef809 (patch) | |
tree | a1f6005bb1ed2f34832b8bb83aef10e9ce82bfab /BCT/RegressionTests | |
parent | 404ff152f889a827ddeafae34125064f65182d10 (diff) |
Handle more conversions.
Diffstat (limited to 'BCT/RegressionTests')
-rw-r--r-- | BCT/RegressionTests/TranslationTest/GeneralHeapInput.txt | 4 | ||||
-rw-r--r-- | BCT/RegressionTests/TranslationTest/SplitFieldsHeapInput.txt | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/BCT/RegressionTests/TranslationTest/GeneralHeapInput.txt b/BCT/RegressionTests/TranslationTest/GeneralHeapInput.txt index 03f26c13..eff71038 100644 --- a/BCT/RegressionTests/TranslationTest/GeneralHeapInput.txt +++ b/BCT/RegressionTests/TranslationTest/GeneralHeapInput.txt @@ -333,6 +333,10 @@ function Ref2Real(Ref, Type, Type) : Real; function Real2Ref(Real, Type, Type) : Ref;
+function Ref2Int(Ref, Type, Type) : int;
+
+function Ref2Bool(Ref, Type, Type) : bool;
+
function $DynamicType(Ref) : Type;
function $TypeOf(Type) : Ref;
diff --git a/BCT/RegressionTests/TranslationTest/SplitFieldsHeapInput.txt b/BCT/RegressionTests/TranslationTest/SplitFieldsHeapInput.txt index dd3e629b..77d0950a 100644 --- a/BCT/RegressionTests/TranslationTest/SplitFieldsHeapInput.txt +++ b/BCT/RegressionTests/TranslationTest/SplitFieldsHeapInput.txt @@ -323,6 +323,10 @@ function Ref2Real(Ref, Type, Type) : Real; function Real2Ref(Real, Type, Type) : Ref;
+function Ref2Int(Ref, Type, Type) : int;
+
+function Ref2Bool(Ref, Type, Type) : bool;
+
function $DynamicType(Ref) : Type;
function $TypeOf(Type) : Ref;
|