From: Matthias Braun Date: Sat, 15 Sep 2007 15:53:47 +0000 (+0000) Subject: testcase where tarval problems manifestated X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=8c390ab5748df8eb10ac17653fb45e01ceadb609;p=libfirm testcase where tarval problems manifestated [r15819] --- diff --git a/ir/be/test/fehler77.c b/ir/be/test/fehler77.c new file mode 100644 index 000000000..7ff8a3a18 --- /dev/null +++ b/ir/be/test/fehler77.c @@ -0,0 +1,7 @@ +unsigned char k; + +int main(void) { + /* should result in a decb k x86 instruction */ + --k; + return 0; +}