From c3cb505dfe17756d9d69a10148a94d75bf07e294 Mon Sep 17 00:00:00 2001 From: Hackerpilot Date: Thu, 12 Mar 2015 12:32:27 -0700 Subject: [PATCH] Update test case for #92 --- tests/issue0092.d | 5 +++++ tests/issue0092.d.ref | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/tests/issue0092.d b/tests/issue0092.d index 64f2ab6..8cc1dfa 100644 --- a/tests/issue0092.d +++ b/tests/issue0092.d @@ -8,5 +8,10 @@ unittest case 4: t1 = Type.tint32; break; + case 5: + if (!global.params.is64bit) + goto Lmemory; + default: + break; } } diff --git a/tests/issue0092.d.ref b/tests/issue0092.d.ref index cdbff8c..20ce17a 100644 --- a/tests/issue0092.d.ref +++ b/tests/issue0092.d.ref @@ -8,5 +8,10 @@ unittest case 4: t1 = Type.tint32; break; + case 5: + if (!global.params.is64bit) + goto Lmemory; + default: + break; } }