Fix 80 col violations.
authorReid Spencer <rspencer@reidspencer.com>
Mon, 16 Apr 2007 21:24:12 +0000 (21:24 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Mon, 16 Apr 2007 21:24:12 +0000 (21:24 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36168 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CallingConv.h

index 4bacb1d954fbe29a40ee86ce3fb1502bff566c66..a10bc39b468dec4aee169dc5974951ed9f6a85a6 100644 (file)
@@ -26,16 +26,16 @@ namespace CallingConv {
   enum ID {
     /// C - The default llvm calling convention, compatible with C.  This
     /// convention is the only calling convention that supports varargs calls.
-    /// As with typical C calling conventions, the callee/caller have to tolerate
-    /// certain amounts of prototype mismatch.
+    /// As with typical C calling conventions, the callee/caller have to 
+    /// tolerate certain amounts of prototype mismatch.
     C = 0,
     
     // Generic LLVM calling conventions.  None of these calling conventions
     // support varargs calls, and all assume that the caller and callee
     // prototype exactly match.
 
-    /// Fast - This calling convention attempts to make calls as fast as possible
-    /// (e.g. by passing things in registers).
+    /// Fast - This calling convention attempts to make calls as fast as 
+    /// possible /// (e.g. by passing things in registers).
     Fast = 8,
 
     // Cold - This calling convention attempts to make code in the caller as