Changeset 773:5696a7167b21
- Timestamp:
- 11/18/08 12:07:57
(2 months ago)
- Author:
- Christian Kamm <kamm incasoftware de>
- branch:
- default
- Message:
Fix RawVarDecl? double codegen bug. Thanks to downs for the testcase.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r758 |
r773 |
|
| 1333 | 1333 | // we don't handle aliases either |
|---|
| 1334 | 1334 | assert(!var->aliassym); |
|---|
| | 1335 | |
|---|
| | 1336 | // if this already has storage, it must've been handled already |
|---|
| | 1337 | if (var->ir.irLocal && var->ir.irLocal->value) |
|---|
| | 1338 | return var->ir.irLocal->value; |
|---|
| 1335 | 1339 | |
|---|
| 1336 | 1340 | // referenced by nested function? |
|---|