[llvm-commits] [llvm] r47877 - /llvm/trunk/include/llvm/Intrinsics.td
Evan Cheng
evan.cheng at apple.com
Mon Mar 3 19:19:19 PST 2008
Author: evancheng
Date: Mon Mar 3 21:19:19 2008
New Revision: 47877
URL: http://llvm.org/viewvc/llvm-project?rev=47877&view=rev
Log:
Fix 80 column violations.
Modified:
llvm/trunk/include/llvm/Intrinsics.td
Modified: llvm/trunk/include/llvm/Intrinsics.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Intrinsics.td?rev=47877&r1=47876&r2=47877&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Intrinsics.td (original)
+++ llvm/trunk/include/llvm/Intrinsics.td Mon Mar 3 21:19:19 2008
@@ -265,18 +265,23 @@
//===------------------------- Atomic Intrinsics --------------------------===//
//
def int_memory_barrier : Intrinsic<[llvm_void_ty, llvm_i1_ty, llvm_i1_ty,
- llvm_i1_ty, llvm_i1_ty, llvm_i1_ty], []>;
+ llvm_i1_ty, llvm_i1_ty, llvm_i1_ty], []>;
-def int_atomic_lcs : Intrinsic<[llvm_anyint_ty, LLVMPointerType<LLVMMatchType<0>>,
+def int_atomic_lcs : Intrinsic<[llvm_anyint_ty,
+ LLVMPointerType<LLVMMatchType<0>>,
LLVMMatchType<0>, LLVMMatchType<0>],
- [IntrWriteArgMem]>, GCCBuiltin<"__sync_val_compare_and_swap">;
-def int_atomic_las : Intrinsic<[llvm_anyint_ty, LLVMPointerType<LLVMMatchType<0>>,
+ [IntrWriteArgMem]>,
+ GCCBuiltin<"__sync_val_compare_and_swap">;
+def int_atomic_las : Intrinsic<[llvm_anyint_ty,
+ LLVMPointerType<LLVMMatchType<0>>,
LLVMMatchType<0>],
- [IntrWriteArgMem]>, GCCBuiltin<"__sync_fetch_and_add">;
-def int_atomic_swap : Intrinsic<[llvm_anyint_ty, LLVMPointerType<LLVMMatchType<0>>,
+ [IntrWriteArgMem]>,
+ GCCBuiltin<"__sync_fetch_and_add">;
+def int_atomic_swap : Intrinsic<[llvm_anyint_ty,
+ LLVMPointerType<LLVMMatchType<0>>,
LLVMMatchType<0>],
- [IntrWriteArgMem]>, GCCBuiltin<"__sync_lock_test_and_set">;
-
+ [IntrWriteArgMem]>,
+ GCCBuiltin<"__sync_lock_test_and_set">;
//===-------------------------- Other Intrinsics --------------------------===//
//
More information about the llvm-commits
mailing list