Changeset 660:d6b71647b622
- Timestamp:
- 10/06/08 10:39:47
(3 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
| r659 |
r660 |
|
| 30 | 30 | testversion=D_InlineAsm_X86_64 |
|---|
| 31 | 31 | testversion=D_InlineAsm_PPC64 |
|---|
| | 32 | testversion=LLVM_InlineAsm_X86 |
|---|
| 32 | 33 | testversion=LittleEndian |
|---|
| 33 | 34 | testversion=BigEndian |
|---|
| 34 | 35 | testversion=LLVM64 |
|---|
| | 36 | testversion=PIC |
|---|
| 35 | 37 | |
|---|
| 36 | 38 | |
|---|
| r443 |
r660 |
|
| 73 | 73 | uint bswap(uint val); |
|---|
| 74 | 74 | |
|---|
| 75 | | ubyte inp(uint p) { return 0; } |
|---|
| 76 | | ushort inpw(uint p) { return 0; } |
|---|
| 77 | | uint inpl(uint p) { return 0; } |
|---|
| | 75 | ubyte inp(uint p) { throw new Exception("inp intrinsic not yet implemented"); } |
|---|
| | 76 | ushort inpw(uint p) { throw new Exception("inpw intrinsic not yet implemented"); } |
|---|
| | 77 | uint inpl(uint p) { throw new Exception("inpl intrinsic not yet implemented"); } |
|---|
| 78 | 78 | |
|---|
| 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; } |
|---|
| | 79 | ubyte outp(uint p, ubyte v) { throw new Exception("outp intrinsic not yet implemented"); } |
|---|
| | 80 | ushort outpw(uint p, ushort v) { throw new Exception("outpw intrinsic not yet implemented"); } |
|---|
| | 81 | uint outpl(uint p, uint v) { throw new Exception("outpl intrinsic not yet implemented"); } |
|---|