[Issue 7953] DMD Error: variable r used before set when compiling with -O

2017-07-18 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=7953 Vladimir Panteleev changed: What|Removed |Added See Also|

[Issue 7953] DMD Error: variable r used before set when compiling with -O

2016-04-24 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=7953 --- Comment #7 from Walter Bright --- (In reply to SomeDude from comment #3) > but I can't reproduce the error message, so maybe I've overlooked something. > However, interestingly, this compiles with -O flag and crashes the

[Issue 7953] DMD Error: variable r used before set when compiling with -O

2016-04-24 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=7953 Walter Bright changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 7953] DMD Error: variable r used before set when compiling with -O

2014-01-22 Thread d-bugmail
https://d.puremagic.com/issues/show_bug.cgi?id=7953 kekeni...@yahoo.co.jp changed: What|Removed |Added Keywords||SIMD CC|

[Issue 7953] DMD Error: variable r used before set when compiling with -O

2012-04-21 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7953 SomeDude lovelyd...@mailmetrash.com changed: What|Removed |Added CC|

[Issue 7953] DMD Error: variable r used before set when compiling with -O

2012-04-21 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7953 --- Comment #3 from SomeDude lovelyd...@mailmetrash.com 2012-04-21 14:17:06 PDT --- I've reduced the test case to this: import core.simd; import std.conv; string gen(int D) { string s; s ~= r = __simd(XMM.ADDPS, v1,v2);;

[Issue 7953] DMD Error: variable r used before set when compiling with -O

2012-04-21 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7953 --- Comment #4 from SomeDude lovelyd...@mailmetrash.com 2012-04-21 14:19:31 PDT --- (In reply to comment #3) I've reduced the test case to this: ... but I can't reproduce the error message, so maybe I've overlooked something. However,

[Issue 7953] DMD Error: variable r used before set when compiling with -O

2012-04-20 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=7953 --- Comment #1 from Zoadian suicide...@xited.de 2012-04-20 12:32:53 PDT --- first one: suicide@zoaHTPC /media/code $ dmd test.d -release -noboundscheck -O test.d(55): Error: variable r used before set another one: suicide@zoaHTPC /media/code