conversion test
authorMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Wed, 7 Feb 2007 17:00:45 +0000 (17:00 +0000)
committerMichael Beck <beck@ipd.info.uni-karlsruhe.de>
Wed, 7 Feb 2007 17:00:45 +0000 (17:00 +0000)
ir/be/test/LuIs.c [new file with mode: 0644]

diff --git a/ir/be/test/LuIs.c b/ir/be/test/LuIs.c
new file mode 100644 (file)
index 0000000..ed2bfc6
--- /dev/null
@@ -0,0 +1,8 @@
+/* testing conversion */
+int test(unsigned long long x) {
+  return x;
+}
+
+int main() {
+  printf("%d\n", test(0x1234567812345678LL));
+}