diff options
author | Andrzej Janik <[email protected]> | 2021-09-19 00:39:43 +0000 |
---|---|---|
committer | Andrzej Janik <[email protected]> | 2021-09-19 00:39:43 +0000 |
commit | 9609f86033e9bff1e080ab9f7e856ed8ce3bd93d (patch) | |
tree | f2fca44b75f1f9788eb67a020ea20db89d2d2394 /ptx/src/test | |
parent | afe912086895bb6a9c5d7f386fd8e7dd90561d63 (diff) | |
download | ZLUDA-9609f86033e9bff1e080ab9f7e856ed8ce3bd93d.tar.gz ZLUDA-9609f86033e9bff1e080ab9f7e856ed8ce3bd93d.zip |
Fix minor bugs
Diffstat (limited to 'ptx/src/test')
-rw-r--r-- | ptx/src/test/spirv_run/call.ptx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ptx/src/test/spirv_run/call.ptx b/ptx/src/test/spirv_run/call.ptx index f2ac39c..537fce2 100644 --- a/ptx/src/test/spirv_run/call.ptx +++ b/ptx/src/test/spirv_run/call.ptx @@ -2,7 +2,7 @@ .target sm_30 .address_size 64 -.func (.param.u64 output) incr (.param.u64 input); +.visible .func (.param.u64 output) incr (.param.u64 input); .visible .entry call( .param .u64 input, @@ -26,7 +26,7 @@ ret; } -.func (.param .u64 output) incr( +.visible .func (.param .u64 output) incr( .param .u64 input ) { |