diff dmd/mtype.h @ 663:6aaa3d3c1183

First part of rename to LDC.
author Christian Kamm <kamm incasoftware de>
date Mon, 06 Oct 2008 22:46:55 +0200
parents 50383e476c7e
children 30b42a283c8e
line wrap: on
line diff
--- a/dmd/mtype.h	Mon Oct 06 21:40:33 2008 +0200
+++ b/dmd/mtype.h	Mon Oct 06 22:46:55 2008 +0200
@@ -98,7 +98,7 @@
     Ttuple,
     Tslice,
 
-// LLVMDC
+// LDC
     Topaque,
 
     TMAX
@@ -177,7 +177,7 @@
     static ClassDeclaration *typeinfodelegate;
     static ClassDeclaration *typeinfotypelist;
 
-    // LLVMDC, for runtime function signatures that contain
+    // LDC, for runtime function signatures that contain
     // AAs or arrays of unknown type
     static Type* topaque;
 
@@ -260,7 +260,7 @@
     // For eliminating dynamic_cast
     virtual TypeBasic *isTypeBasic();
 
-    // llvmdc
+    // LDC
     IrType ir;
 };
 
@@ -389,7 +389,7 @@
     void toCBuffer2(OutBuffer *buf, HdrGenState *hgs, int mod);
     MATCH implicitConvTo(Type *to);
     int isscalar();
-    // LLVMDC: pointers are unsigned
+    // LDC: pointers are unsigned
     int isunsigned() { return TRUE; };
     Expression *defaultInit(Loc loc);
     int isZeroInit();
@@ -441,7 +441,7 @@
 
     unsigned totym();
 
-    // LLVMDC
+    // LDC
     bool retInPtr;
     bool usesThis;
     bool usesNest;
@@ -674,7 +674,7 @@
     void toCBuffer2(OutBuffer *buf, HdrGenState *hgs, int mod);
 };
 
-//LLVMDC
+//LDC
 struct TypeOpaque : Type
 { 
     TypeOpaque() : Type(Topaque, NULL) {}
@@ -704,7 +704,7 @@
     static size_t dim(Arguments *arguments);
     static Argument *getNth(Arguments *arguments, size_t nth, size_t *pn = NULL);
 
-    // LLVMDC
+    // LDC
     unsigned llvmAttrs;
 };