Displaying 3 results from an estimated 3 matches for "qux1".
Did you mean:
qux
2013 Apr 02
2
How to remove all characters after comma in R
I have the following list of strings:
x <- c("foo, foo2, foo3", "bar", "qux, qux1")
what I want to do is to obtain
foo, bar qux
Namely for each element in the vector obtain only string
before the first comma.
What's the way to do it?
- G.V.
[[alternative HTML version deleted]]
2007 Oct 26
2
[LLVMdev] RFC: llvm-convert.cpp Patch
Hi all,
The patch below is to fix a problem with unaligned memcpys. This program:
void Bork() {
int Qux[33] = {0};
}
will currently produce this LLVM code on PPC64:
@C.0.937 = internal constant [33 x i8] zeroinitializer
define void @Bork() {
entry:
%Qux = alloca [33 x i8]
%Qux1 = bitcast [33 x i8]* %Qux to i8*
call void @llvm.memcpy.i64( i8* %Qux1, i8* getelementptr ([33
x i8]* @C.0.1173, i32 0, i32 0), i64 33, i32 8 )
br label %return
return:
ret void
}
declare void @llvm.memcpy.i64(i8*, i8*, i64, i32)
Notice that the alignment of the llvm.memcpy.i64 is 8 bu...
2007 Oct 26
0
[LLVMdev] RFC: llvm-convert.cpp Patch
...unaligned memcpys. This
> program:
>
> void Bork() {
> int Qux[33] = {0};
> }
>
> will currently produce this LLVM code on PPC64:
>
> @C.0.937 = internal constant [33 x i8] zeroinitializer
>
> define void @Bork() {
> entry:
> %Qux = alloca [33 x i8]
> %Qux1 = bitcast [33 x i8]* %Qux to i8*
> call void @llvm.memcpy.i64( i8* %Qux1, i8* getelementptr ([33
> x i8]* @C.0.1173, i32 0, i32 0), i64 33, i32 8 )
> br label %return
>
> return:
> ret void
> }
>
> declare void @llvm.memcpy.i64(i8*, i8*, i64, i32)
>
> Noti...