[llvm-commits] CVS: llvm/include/llvm/CallingConv.h
Reid Spencer
reid at x10sys.com
Mon Apr 16 14:24:35 PDT 2007
Changes in directory llvm/include/llvm:
CallingConv.h updated: 1.6 -> 1.7
---
Log message:
Fix 80 col violations.
---
Diffs of the changes: (+4 -4)
CallingConv.h | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
Index: llvm/include/llvm/CallingConv.h
diff -u llvm/include/llvm/CallingConv.h:1.6 llvm/include/llvm/CallingConv.h:1.7
--- llvm/include/llvm/CallingConv.h:1.6 Sun Jan 28 07:31:35 2007
+++ llvm/include/llvm/CallingConv.h Mon Apr 16 16:24:12 2007
@@ -26,16 +26,16 @@
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
More information about the llvm-commits
mailing list