search for: cont5

Displaying 4 results from an estimated 4 matches for "cont5".

Did you mean: cont
2009 Nov 20
2
[LLVMdev] llc barfing
...[ false, %fail1 ] ; <i1> [#uses=1] br i1 %8, label %pass4, label %fail3 fail3: ; preds = %cont %9 = call i32 (i8*, ...)* @printf(i8* getelementptr ([27 x i8]* @buf10, i32 0, i32 0)) ; <i32> [#uses=0] call void @exit(i32 1) br label %cont5 pass4: ; preds = %cont br label %cont5 cont5: ; preds = %pass4, %fail3 %10 = extractvalue %0 %0, 2 ; <i8*> [#uses=1] %11 = bitcast i8* %10 to %0* ; <%0*>...
2014 Nov 24
1
[LLVMdev] RFC: How to represent SEH (__try / __except) in LLVM IR
...8* %3, i8** %exn.slot %4 = extractvalue { i8*, i32 } %2, 1 store i32 %4, i32* %ehselector.slot ; No pre-catch cleanup for this landingpad br label %catch.dispatch ; From 'if.then' invoke of do_thing_one() ; Or from 'if.else' invoke of Inner constructor ; Or from 'invoke.cont5 invoke of Inner destructor ; middle needs pre-catch cleanup ; outer needs post-catch cleanup lpad1: ; preds = %invoke.cont5, %if.else, %if.then %5 = landingpad { i8*, i32 } personality i8* bitcast (i32 (...)* @__CxxFrameHandler3 to i8*) cle...
2007 Dec 27
0
SAS to R - if you have SAS 8.2+
...o; if format in ('DATE','DATETIME') then dummy='date'; ",sep="") cont3 <- paste(cont3,"else dummy='numeric'; end; run;",sep="") cont4 <- "proc transpose data=_tmp2 out=_tmp3(DROP=_NAME_); id name; var dummy; run;" cont5 <- paste("proc export data=_tmp3 outfile='",coldef,"' dbms=csv; run;",sep="") obSAS.LanguageService$Submit(cont1) obSAS.LanguageService$Submit(cont2) obSAS.LanguageService$Submit(cont3) obSAS.LanguageService$Submit(cont4) obSAS.LanguageService$Submit(c...
2015 May 15
8
[LLVMdev] RFC: New EH representation for MSVC compatibility
...el %cont3 unwind label %catchend1 cont3: invoke void @f(i32 4) to label %cont4 unwind label %maycatch.all cont4: resume label %return maycatch.all: catchblock void [i8* null, i32 0, i8* null] to label %catch.all unwind label %catchend2 catch.all: invoke void @f(i32 5) to label %cont5 unwind label %catchend2 cont5: resume label %cont4 catchend2: catchendblock unwind label %catchend1 catchend1: catchendblock unwind label %callterminate callterminate: terminateblock [void ()* @std.terminate] } >From this IR, we can recover the original scoped nesting form that the t...