Wiki Roadmap Timeline Tickets New Ticket Source Search Help / Guide About Trac Login

Changeset 660:d6b71647b622

Show
Ignore:
Timestamp:
10/06/08 10:39:47 (2 months ago)
Author:
Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
branch:
default
Message:

One more update of Tango Rebuild profile.
Made the inp/outp intrinsics throw exceptions instead of doing nothing silently.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • llvmdc-tango

    r659 r660  
    3030testversion=D_InlineAsm_X86_64 
    3131testversion=D_InlineAsm_PPC64 
     32testversion=LLVM_InlineAsm_X86 
    3233testversion=LittleEndian 
    3334testversion=BigEndian 
    3435testversion=LLVM64 
     36testversion=PIC 
    3537 
    3638 
  • runtime/internal/llvmdc/bitmanip.d

    r443 r660  
    7373    uint bswap(uint val); 
    7474 
    75 ubyte  inp(uint p) { return 0; } 
    76 ushort inpw(uint p) { return 0; } 
    77 uint   inpl(uint p) { return 0; } 
     75ubyte  inp(uint p) { throw new Exception("inp intrinsic not yet implemented"); } 
     76ushort inpw(uint p) { throw new Exception("inpw intrinsic not yet implemented"); } 
     77uint   inpl(uint p) { throw new Exception("inpl intrinsic not yet implemented"); } 
    7878 
    79 ubyte  outp(uint p, ubyte v) { return v; } 
    80 ushort outpw(uint p, ushort v) { return v; } 
    81 uint   outpl(uint p, uint v) { return v; } 
     79ubyte  outp(uint p, ubyte v) { throw new Exception("outp intrinsic not yet implemented"); } 
     80ushort outpw(uint p, ushort v) { throw new Exception("outpw intrinsic not yet implemented"); } 
     81uint   outpl(uint p, uint v) { throw new Exception("outpl intrinsic not yet implemented"); } 
Copyright © 2008, LDC Development Team.