Remove warnings about unused parameters and shadowed variables.
[oota-llvm.git] / include / llvm / CallingConv.h
index a10bc39b468dec4aee169dc5974951ed9f6a85a6..13dd0f79e782e7e721befdd7bbe3ea999fb1b153 100644 (file)
@@ -2,8 +2,8 @@
 //
 //                     The LLVM Compiler Infrastructure
 //
-// This file was developed by the LLVM research group and is distributed under
-// the University of Illinois Open Source License. See LICENSE.TXT for details.
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
 //
 //===----------------------------------------------------------------------===//
 //
@@ -57,7 +57,11 @@ namespace CallingConv {
     /// X86_FastCall - 'fast' analog of X86_StdCall. Passes first two arguments
     /// in ECX:EDX registers, others - via stack. Callee is responsible for
     /// stack cleaning.
-    X86_FastCall = 65
+    X86_FastCall = 65,
+
+    /// 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