The inline keyword goes before the return type. This fixes a compiler warning.
[oota-llvm.git] / include / llvm / CallingConv.h
index bb76defc26614bcde989091a00cd54fbbeb6033a..13dd0f79e782e7e721befdd7bbe3ea999fb1b153 100644 (file)
@@ -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