Brought back the Standalone and Linker tests into backend.native:tests:run.

This commit is contained in:
Alexander Gorshenev
2018-01-19 12:56:21 +03:00
committed by alexander-gorshenev
parent 8c72f0a629
commit 33d895fcf7
3 changed files with 17 additions and 2 deletions
+2
View File
@@ -25,10 +25,12 @@ THREAD_LOCAL_VARIABLE long long storage;
extern "C" {
RUNTIME_USED
KDouble ReturnSlot_getDouble() {
return *reinterpret_cast<KDouble*>(&::storage);
}
RUNTIME_USED
void ReturnSlot_setDouble(KInt upper, KInt lower) {
reinterpret_cast<KInt*>(&::storage)[0] = lower;
reinterpret_cast<KInt*>(&::storage)[1] = upper;