Changeset 841

Show
Ignore:
Timestamp:
08/29/08 10:26:31 (3 months ago)
Author:
Don Clugston
Message:

This obj is present in phobos2, but missing from phobos1. By including it, phobos can be compiled without needing masm.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/phobos-1.x/phobos/internal/deh.c

    r295 r841  
    271271        case STATUS_STACK_OVERFLOW: 
    272272            pti = _d_create_exception_object(&_Class_9Exception, "Stack Overflow"); 
     273            break; 
     274 
     275        case STATUS_DATATYPE_MISALIGNMENT: 
     276            pti = _d_create_exception_object(&_Class_9Exception, "Datatype Misalignment"); 
     277            break; 
     278 
     279        case STATUS_ARRAY_BOUNDS_EXCEEDED: 
     280            pti = _d_create_exception_object(&_Class_9Exception, "Array Bounds Exceeded"); 
    273281            break; 
    274282