diff options
Diffstat (limited to 'backend/backend.icl')
-rw-r--r-- | backend/backend.icl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/backend/backend.icl b/backend/backend.icl index cb25dd1..ef0fe09 100644 --- a/backend/backend.icl +++ b/backend/backend.icl @@ -124,6 +124,12 @@ BETypeSymbol a0 a1 a2 = code { } // BESymbolP BETypeSymbol (int typeIndex,int moduleIndex); +BETypeSymbolNoMark :: !Int !Int !BackEnd -> (!BESymbolP,!BackEnd); +BETypeSymbolNoMark a0 a1 a2 = code { + ccall BETypeSymbolNoMark "II:p:p" +} +// BESymbolP BETypeSymbolNoMark (int typeIndex,int moduleIndex); + BEDontCareDefinitionSymbol :: !BackEnd -> (!BESymbolP,!BackEnd); BEDontCareDefinitionSymbol a0 = code { ccall BEDontCareDefinitionSymbol ":p:p" |