diff dmd/statement.h @ 664:eef8ac26c66c

Some missed LLVMDC -> LDC.
author Christian Kamm <kamm incasoftware de>
date Mon, 06 Oct 2008 22:54:08 +0200
parents 6aee82889553
children a58784e0f035
line wrap: on
line diff
--- a/dmd/statement.h	Mon Oct 06 22:46:55 2008 +0200
+++ b/dmd/statement.h	Mon Oct 06 22:54:08 2008 +0200
@@ -94,7 +94,7 @@
     BEany = (BEfallthru | BEthrow | BEreturn | BEgoto | BEhalt),
 };
 
-// LLVMDC this is used for tracking try-finally, synchronized and volatile scopes
+// LDC this is used for tracking try-finally, synchronized and volatile scopes
 // definitions in gen/llvmhelpers.cpp
 struct EnclosingHandler : Object
 {
@@ -544,7 +544,7 @@
 
     CaseStatement* isCaseStatement() { return this; }
 
-    // LLVMDC
+    // LDC
     llvm::BasicBlock* bodyBB;
     llvm::ConstantInt* llvmIdx;
 };
@@ -570,7 +570,7 @@
 
     void toIR(IRState *irs);
 
-    // LLVMDC
+    // LDC
     llvm::BasicBlock* bodyBB;
 };
 
@@ -655,7 +655,7 @@
 
     void toIR(IRState *irs);
 
-    // LLVMDC: only set if ident is set: label statement to jump to
+    // LDC: only set if ident is set: label statement to jump to
     LabelStatement *target;
 };
 
@@ -674,7 +674,7 @@
 
     void toIR(IRState *irs);
 
-    // LLVMDC: only set if ident is set: label statement to jump to
+    // LDC: only set if ident is set: label statement to jump to
     LabelStatement *target;
 };
 
@@ -871,7 +871,7 @@
 
     void toIR(IRState *irs);
 
-    // LLVMDC
+    // LDC
     bool asmLabel;       // for labels inside inline assembler
 };
 
@@ -903,7 +903,7 @@
 
     void toIR(IRState *irs);
 
-    // LLVMDC
+    // LDC
     // non-zero if this is a branch, contains the target labels identifier
     Identifier* isBranchToLabel;
 };