Fix 80 col violations.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36168 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2007-04-16 21:24:12 +00:00
parent 45fdfb651b
commit 02b2a4c77a

View File

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