From 07402998606445a7d72e2ba46a0c533cc7a78dca Mon Sep 17 00:00:00 2001 From: Matt Pharr Date: Thu, 12 Jan 2012 09:45:31 -0800 Subject: [PATCH] Fix switch test --- tests/switch-8.ispc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/switch-8.ispc b/tests/switch-8.ispc index db46670f..ca1848e8 100644 --- a/tests/switch-8.ispc +++ b/tests/switch-8.ispc @@ -14,7 +14,7 @@ int switchit(int a, uniform int b) { return 2; case 32: *((int *)NULL) = 0; -//CO default: + default: case 1: case 2: return 0;