Description: winx64 cannot be used with preprocessing on non-x86 platfroms
 .
 cbmc (5.9-4) unstable; urgency=low
 .
   * tba
Author: Michael Tautschnig <mt@debian.org>

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: 2018-07-04

--- cbmc-5.9.orig/regression/cbmc/Visual_Studio_Types2/main.c
+++ /dev/null
@@ -1,25 +0,0 @@
-int main()
-{
-  // general types
-  short s;
-  int i;
-  long l;
-  long long ll;
-
-  assert(sizeof(s)==2);
-  assert(sizeof(i)==4);
-  assert(sizeof(l)==4);
-  assert(sizeof(ll)==8);
-
-  // oh, and these pointer qualifiers are MS-specific
-  #ifdef _MSC_VER
-  int * __ptr32 p32;
-  int * __ptr64 p64;
-
-  // requires --winx64 to work
-  assert(sizeof(p32)==4);
-  assert(sizeof(p64)==8);
-  #endif
-
-  assert(sizeof(void *)==8);
-}
--- /dev/null
+++ cbmc-5.9/regression/cbmc/Visual_Studio_Types2/main.i
@@ -0,0 +1,25 @@
+int main()
+{
+  // general types
+  short s;
+  int i;
+  long l;
+  long long ll;
+
+  assert(sizeof(s)==2);
+  assert(sizeof(i)==4);
+  assert(sizeof(l)==4);
+  assert(sizeof(ll)==8);
+
+  // oh, and these pointer qualifiers are MS-specific
+  #ifdef _MSC_VER
+  int * __ptr32 p32;
+  int * __ptr64 p64;
+
+  // requires --winx64 to work
+  assert(sizeof(p32)==4);
+  assert(sizeof(p64)==8);
+  #endif
+
+  assert(sizeof(void *)==8);
+}
--- cbmc-5.9.orig/regression/cbmc/Visual_Studio_Types2/test.desc
+++ cbmc-5.9/regression/cbmc/Visual_Studio_Types2/test.desc
@@ -1,5 +1,5 @@
 CORE
-main.c
+main.i
 --winx64
 ^EXIT=0$
 ^SIGNAL=0$
