diff options
| author | Chris Lattner <sabre@nondot.org> | 2006-04-13 18:23:48 +0000 | 
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2006-04-13 18:23:48 +0000 | 
| commit | ef023cb6e9182811b14ee1940e6d35bae50eb447 (patch) | |
| tree | c173b7431e2f552a63a7662ae5de03d0a06b39ae /llvm | |
| parent | ce5ee73be6ca7eb01ab1a260f358ee7029fe48b3 (diff) | |
| download | bcm5719-llvm-ef023cb6e9182811b14ee1940e6d35bae50eb447.tar.gz bcm5719-llvm-ef023cb6e9182811b14ee1940e6d35bae50eb447.zip  | |
Fix an incorrect prototype for this intrinsic, fixing
CFrontend/2003-08-18-SigSetJmp.c  with llvm-gcc3.  This is part of PR733.
llvm-svn: 27670
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/include/llvm/Intrinsics.td | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/Intrinsics.td b/llvm/include/llvm/Intrinsics.td index 63da44960bf..3b1fae3be30 100644 --- a/llvm/include/llvm/Intrinsics.td +++ b/llvm/include/llvm/Intrinsics.td @@ -176,7 +176,7 @@ let Properties = [IntrNoMem] in {  // NOTE: these are internal interfaces.  def int_setjmp     : Intrinsic<[llvm_int_ty , llvm_ptr_ty]>;  def int_longjmp    : Intrinsic<[llvm_void_ty, llvm_ptr_ty, llvm_int_ty]>; -def int_sigsetjmp  : Intrinsic<[llvm_int_ty , llvm_ptr_ty]>; +def int_sigsetjmp  : Intrinsic<[llvm_int_ty , llvm_ptr_ty, llvm_int_ty]>;  def int_siglongjmp : Intrinsic<[llvm_void_ty, llvm_ptr_ty, llvm_int_ty]>;  //===-------------------- Bit Manipulation Intrinsics ---------------------===//  | 

