summaryrefslogtreecommitdiff
path: root/tests/compute/dynamic-dispatch-5.slang
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2020-08-05 10:32:52 -0700
committerGitHub <noreply@github.com>2020-08-05 10:32:52 -0700
commit6fb2aa70a2681bffbac7e8de67e9598105389945 (patch)
treef89cb433e7498bf74292bf460096f1129ef3ac13 /tests/compute/dynamic-dispatch-5.slang
parent092337a67e7ef8ec108cab9cb6679e59bb2ff791 (diff)
`AnyValue` based dynamic dispatch code gen (#1477)
* AnyValue based dynamic code gen * Fix aarch64 build error
Diffstat (limited to 'tests/compute/dynamic-dispatch-5.slang')
-rw-r--r--tests/compute/dynamic-dispatch-5.slang2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/compute/dynamic-dispatch-5.slang b/tests/compute/dynamic-dispatch-5.slang
index 6c403860b..589433af4 100644
--- a/tests/compute/dynamic-dispatch-5.slang
+++ b/tests/compute/dynamic-dispatch-5.slang
@@ -2,7 +2,7 @@
//DISABLE_TEST(compute):COMPARE_COMPUTE:-cuda -xslang -allow-dynamic-code
// Test dynamic dispatch code gen for general `This` type.
-
+[anyValueSize(8)]
interface IInterface
{
int Compute(int inVal, This other);