summaryrefslogtreecommitdiffhomepage
path: root/snippets
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2026-03-09 17:43:30 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2026-03-09 17:43:30 +0100
commit587943f7e6510078e789155c0c364709c22f4316 (patch)
treeb4406176c141beea5170693c7872a58f2c035836 /snippets
parentb65c80c1b076e574aca27f84035c464efe50e92f (diff)
[CHORE] Patches for assembler and PTX support.nectar-gpu-improvements-and-bjam
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'snippets')
-rw-r--r--snippets/test_snippets/inner.nc7
1 files changed, 1 insertions, 6 deletions
diff --git a/snippets/test_snippets/inner.nc b/snippets/test_snippets/inner.nc
index 5d90b41..3004ea7 100644
--- a/snippets/test_snippets/inner.nc
+++ b/snippets/test_snippets/inner.nc
@@ -1,11 +1,6 @@
-extern exit;
let main()
{
let foo := 42;
-
- const ret_stub():
- foo := 0x10;
- exit(foo);
- return 0x0;
+ return foo;
}