Debug Info: define a DIRef template.
[oota-llvm.git] / include / llvm / Target / TargetOpcodes.h
index 37f7b2fb8db52549947539c387a048127b596a56..516e0706b8977b8faeeea27cbe52e4a9d187c345 100644 (file)
@@ -82,7 +82,16 @@ namespace TargetOpcode {
 
     /// COPY - Target-independent register copy. This instruction can also be
     /// used to copy between subregisters of virtual registers.
-    COPY = 13
+    COPY = 13,
+
+    /// BUNDLE - This instruction represents an instruction bundle. Instructions
+    /// which immediately follow a BUNDLE instruction which are marked with
+    /// 'InsideBundle' flag are inside the bundle.
+    BUNDLE = 14,
+
+    /// Lifetime markers.
+    LIFETIME_START = 15,
+    LIFETIME_END = 16
   };
 } // end namespace TargetOpcode
 } // end namespace llvm