Description: Using --win32 on non-x86 platforms only works for preprocessed code
 .
 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/Float24/main.c
+++ /dev/null
@@ -1,6 +0,0 @@
-int main()
-{
-  double d=5.1;
-  __CPROVER_assert(0, "");
-  return 0;
-}
--- /dev/null
+++ cbmc-5.9/regression/cbmc/Float24/main.i
@@ -0,0 +1,6 @@
+int main()
+{
+  double d=5.1;
+  __CPROVER_assert(0, "");
+  return 0;
+}
--- cbmc-5.9.orig/regression/cbmc/Float24/test.desc
+++ cbmc-5.9/regression/cbmc/Float24/test.desc
@@ -1,5 +1,5 @@
 CORE
-main.c
+main.i
 --win32 --xml-ui
 ^EXIT=10$
 ^SIGNAL=0$
--- cbmc-5.9.orig/regression/cbmc/Visual_Studio_Types1/main.c
+++ /dev/null
@@ -1,48 +0,0 @@
-int main()
-{
-  // these types are Visual Studio-specific
-  #ifdef _MSC_VER
-  __int8 i1;
-  __int16 i2;
-  __int32 i3;
-  __int64 i4;
-
-  assert(sizeof(i1)==1);
-  assert(sizeof(i2)==2);
-  assert(sizeof(i3)==4);
-  assert(sizeof(i4)==8);
-  #endif
-
-  // general types
-
-  char c;
-  short s;
-  int i;
-  long l;
-  long long ll;
-
-  assert(sizeof(c)==1);
-  assert(sizeof(s)==2);
-  assert(sizeof(i)==4);
-  assert(sizeof(l)==4);
-  assert(sizeof(ll)==8);
-
-  // these constants are Visual Studio-specific
-  #ifdef _MSC_VER
-  assert(sizeof(1i8)==1);
-  assert(sizeof(1i16)==2);
-  assert(sizeof(1i32)==4);
-  assert(sizeof(1i64)==8);
-  assert(sizeof(1i128)==16);
-
-  // oh, and these pointer qualifiers are Visual Studio-specific
-  int * __ptr32 p32;
-  //int * __ptr64 p64;
-
-  // requires --i386-win32 to work
-  assert(sizeof(p32)==4);
-  //assert(sizeof(p64)==8);
-  #endif
-
-  assert(sizeof(void *)==4);
-}
--- /dev/null
+++ cbmc-5.9/regression/cbmc/Visual_Studio_Types1/main.i
@@ -0,0 +1,48 @@
+int main()
+{
+  // these types are Visual Studio-specific
+  #ifdef _MSC_VER
+  __int8 i1;
+  __int16 i2;
+  __int32 i3;
+  __int64 i4;
+
+  assert(sizeof(i1)==1);
+  assert(sizeof(i2)==2);
+  assert(sizeof(i3)==4);
+  assert(sizeof(i4)==8);
+  #endif
+
+  // general types
+
+  char c;
+  short s;
+  int i;
+  long l;
+  long long ll;
+
+  assert(sizeof(c)==1);
+  assert(sizeof(s)==2);
+  assert(sizeof(i)==4);
+  assert(sizeof(l)==4);
+  assert(sizeof(ll)==8);
+
+  // these constants are Visual Studio-specific
+  #ifdef _MSC_VER
+  assert(sizeof(1i8)==1);
+  assert(sizeof(1i16)==2);
+  assert(sizeof(1i32)==4);
+  assert(sizeof(1i64)==8);
+  assert(sizeof(1i128)==16);
+
+  // oh, and these pointer qualifiers are Visual Studio-specific
+  int * __ptr32 p32;
+  //int * __ptr64 p64;
+
+  // requires --i386-win32 to work
+  assert(sizeof(p32)==4);
+  //assert(sizeof(p64)==8);
+  #endif
+
+  assert(sizeof(void *)==4);
+}
--- cbmc-5.9.orig/regression/cbmc/Visual_Studio_Types1/test.desc
+++ cbmc-5.9/regression/cbmc/Visual_Studio_Types1/test.desc
@@ -1,5 +1,5 @@
 CORE
-main.c
+main.i
 --i386-win32
 ^EXIT=0$
 ^SIGNAL=0$
