fehler103: Unusual 64bit shift triggers assert in constraint handler.
authorChristoph Mallon <christoph.mallon@gmx.de>
Mon, 29 Oct 2007 19:08:23 +0000 (19:08 +0000)
committerChristoph Mallon <christoph.mallon@gmx.de>
Mon, 29 Oct 2007 19:08:23 +0000 (19:08 +0000)
[r16390]

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

diff --git a/ir/be/test/fehler103.c b/ir/be/test/fehler103.c
new file mode 100644 (file)
index 0000000..122e974
--- /dev/null
@@ -0,0 +1,9 @@
+unsigned long long test_shld(unsigned x)
+{
+       return ((unsigned long long)x << 32 | x) << x;
+}
+
+int main(void)
+{
+       return 0;
+}