summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-04-16 21:24:12 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-04-16 21:24:12 +0000
commit02b2a4c77a7146f434a74d3db44ebaf79be3a5e7 (patch)
tree95956a75fbd840d4afb05379f03cbf0d6bf51acd /include
parent45fdfb651bbb745ec9bc68dc8da333edd5d3c5ee (diff)
downloadllvm-02b2a4c77a7146f434a74d3db44ebaf79be3a5e7.tar.gz
llvm-02b2a4c77a7146f434a74d3db44ebaf79be3a5e7.tar.bz2
llvm-02b2a4c77a7146f434a74d3db44ebaf79be3a5e7.tar.xz
Fix 80 col violations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36168 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CallingConv.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/CallingConv.h b/include/llvm/CallingConv.h
index 4bacb1d954..a10bc39b46 100644
--- a/include/llvm/CallingConv.h
+++ b/include/llvm/CallingConv.h
@@ -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