Bugzilla – Bug 297
[llvmgcc] Crash on auto register variable with specific register specified
Last modified: 2004-03-16 15:54:28
You need to log in before you can comment on or make changes to this bug.
This testcase crashes the C front-end. Though we don't support stuff like this, we shouldn't CRASH on it: --- int foo() { register int X __asm__("ebx"); return X; } --- -Chris
Fixed. Patch here: http://mail.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20040315/013200.html Testcase here: test/Regression/CFrontend/2004-03-16-AsmRegisterCrash.c -Chris