comparison runtime/import/llvmdc/intrinsics.di @ 663:6aaa3d3c1183

First part of rename to LDC.
author Christian Kamm <kamm incasoftware de>
date Mon, 06 Oct 2008 22:46:55 +0200
parents cecfee2d01a8
children
comparison
equal deleted inserted replaced
662:88e23f8c2354 663:6aaa3d3c1183
5 * 5 *
6 * - http://llvm.org/docs/LangRef.html#intrinsics 6 * - http://llvm.org/docs/LangRef.html#intrinsics
7 * 7 *
8 */ 8 */
9 9
10 module llvmdc.intrinsics; 10 module ldc.intrinsics;
11 11
12 // Check for the right compiler 12 // Check for the right compiler
13 version(LLVMDC) 13 version(LDC)
14 { 14 {
15 // OK 15 // OK
16 } 16 }
17 else 17 else
18 { 18 {
19 static assert(false, "This module is only valid for LLVMDC"); 19 static assert(false, "This module is only valid for LDC");
20 } 20 }
21 21
22 // 22 //
23 // CODE GENERATOR INTRINSICS 23 // CODE GENERATOR INTRINSICS
24 // 24 //