From: Michael Beck Date: Wed, 7 Feb 2007 17:00:45 +0000 (+0000) Subject: conversion test X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=dc43fa9b312ff8aa99823ca937afaaba9ffda1f7;p=libfirm conversion test --- diff --git a/ir/be/test/LuIs.c b/ir/be/test/LuIs.c new file mode 100644 index 000000000..ed2bfc6dc --- /dev/null +++ b/ir/be/test/LuIs.c @@ -0,0 +1,8 @@ +/* testing conversion */ +int test(unsigned long long x) { + return x; +} + +int main() { + printf("%d\n", test(0x1234567812345678LL)); +}