Remove warnings about unused parameters and shadowed variables.
[oota-llvm.git] / include / llvm / CallingConv.h
index 8b6a01a0cf5605d0d0e3c4baea5994d048ae1ed6..13dd0f79e782e7e721befdd7bbe3ea999fb1b153 100644 (file)
@@ -59,10 +59,9 @@ namespace CallingConv {
     /// stack cleaning.
     X86_FastCall = 65,
 
-    /// X86_Ocaml - This is a weird ABI used by Objective Caml. Formally, it
-    /// supports only one to six integer/address arguments, all in-reg. It also
-    /// supports tail call emission.
-    X86_Ocaml = 66
+    /// X86_SSEreg - The standard convention except that float and double
+    /// values are returned in XMM0 if SSE support is available.
+    X86_SSECall = 66
   };
 } // End CallingConv namespace