search for: foov

Displaying 2 results from an estimated 2 matches for "foov".

Did you mean: fool
2010 Jan 16
1
order() fails on a chr object of class "AsIs" with "\265" in it
Here's an example (session info at the end). > tmpv <- c('\265g/L','Bq/L') > order(tmpv) [1] 2 1 > tmpv <- I(tmpv) > order(tmpv) Error in if (xi > xj) 1L else -1L : missing value where TRUE/FALSE needed > foov <- gsub('\265','',tmpv) > order(foov) [1] 2 1 > str(tmpv) Class 'AsIs' chr [1:2] "\265g/L" "Bq/L" > str(foov) Class 'AsIs' chr [1:2] "g/L" "Bq/L" I can easily work around this in my scripts, but shouldn't...
2009 Jan 14
2
[LLVMdev] Use two ComplexPatterns (possible bug of TableGen?)
...Select_ISD_MUL_v4i32(const SDValue &N) { SDValue N0 = N.getOperand(0); SDValue CPTmp0; SDValue CPTmp1; if (SelectRegsw(N, N0, CPTmp0, CPTmp1)) { SDValue N1 = N.getOperand(1); SDValue CPTmp0; SDValue CPTmp1; if (SelectRegsw(N, N1, CPTmp0, CPTmp1)) { return Emit_1(N, FooVS::MUL_1, MVT::v4i32, CPTmp0, CPTmp1); } }