Testcase for wrong stab info.
authorChristoph Mallon <christoph.mallon@gmx.de>
Thu, 28 Jun 2007 09:01:47 +0000 (09:01 +0000)
committerChristoph Mallon <christoph.mallon@gmx.de>
Thu, 28 Jun 2007 09:01:47 +0000 (09:01 +0000)
[r14800]

ir/be/test/fehler27.c [new file with mode: 0644]

diff --git a/ir/be/test/fehler27.c b/ir/be/test/fehler27.c
new file mode 100644 (file)
index 0000000..bef57d2
--- /dev/null
@@ -0,0 +1,28 @@
+/* Wrong stabs */
+
+#define MAX_FILENAME_LEN 48
+
+typedef unsigned char BOOLEAN;
+typedef unsigned int  UINT32;
+typedef unsigned char UINT8;
+typedef void*         HVOBJECT;
+
+
+typedef struct
+{
+       char ubFilename[MAX_FILENAME_LEN];
+       BOOLEAN   fLoaded;
+       UINT32    uiIndex;
+       UINT8     ubFlags;
+       UINT8     ubNumberOfFrames;
+       HVOBJECT  hVObject;
+} CursorFileData;
+
+
+CursorFileData blub;
+
+
+int main(void)
+{
+       return 0;
+}