search for: 0xm

Displaying 6 results from an estimated 6 matches for "0xm".

Did you mean: 0x
2011 Feb 19
0
[PATCH] add support for more Matrix-UPS revisions
As I requested here: https://bugzilla.redhat.com/show_bug.cgi?id=678793 Add support for Matrix-UPS firmware 0XM/0XI with additional commands Description of problem: The attached patch adds support for Matrix-UPS revision strings 0XI and 0XM to the apcsmart driver. The revision string itself isn't completely opaque--it is made up of different parts as documented on http://homepage1.nifty.com/Que/pla...
2012 May 11
2
[LLVMdev] [PATCH] OpenCL half support
...ked the math on the half-values. I checked with reference to trunk top-of-tree at revision 156617. I have not compiled the code. lib/AsmParser/LLLexer.cpp Adds support to parse format: 0xH<hexdigits> Tha 0xH format should be described in LangRef.html alongside 0xK<hex> and 0xM<hex> The code looks good though. lib/VMCore/AsmWriter.cpp The change updates Printing support for half data type, so it uses the new special 0xH<hex> form. Declaration of "int shiftcount" should be moved to smallest nesting possible, right after "if ( c...
2012 May 17
0
[LLVMdev] [PATCH] OpenCL half support
Hi David, Many thanks for the comments! > Tha 0xH format should be described in LangRef.html alongside > 0xK<hex> and 0xM<hex> Done. > Declaration of "int shiftcount" should be moved to smallest nesting > possible, right after "if ( const ConstantFP ..." at line 710 > > (The code makes a lot more sense with a good comment on the > definition > of shiftcount. I...
2012 May 17
3
[LLVMdev] [PATCH] OpenCL half support
...4:51 AM > To: 'David Neto' > Cc: llvmdev at cs.uiuc.edu > Subject: Re: [LLVMdev] [PATCH] OpenCL half support > > Hi David, > > Many thanks for the comments! > > > Tha 0xH format should be described in LangRef.html alongside > > 0xK<hex> and 0xM<hex> > Done. > > > Declaration of "int shiftcount" should be moved to smallest nesting > > possible, right after "if ( const ConstantFP ..." at line 710 > > > > (The code makes a lot more sense with a good comment on the > > de...
2012 May 17
0
[LLVMdev] [PATCH] OpenCL half support
...> Cc: llvmdev at cs.uiuc.edu > > Subject: Re: [LLVMdev] [PATCH] OpenCL half support > > > > Hi David, > > > > Many thanks for the comments! > > > > > Tha 0xH format should be described in LangRef.html alongside > > > 0xK<hex> and 0xM<hex> > > Done. > > > > > Declaration of "int shiftcount" should be moved to smallest > nesting > > > possible, right after "if ( const ConstantFP ..." at line 710 > > > > > > (The code makes a lot more sense with...
2007 Dec 15
2
[LLVMdev] fix warning with newer g++ compilers
...LLexer::LexIdentifier() { llvmAsmlval.OtherOpVal = Instruction::Call; return CALL; } - + // Finally, if this isn't known, return just a single character. CurPtr = TokStart+1; return TokStart[0]; @@ -648,7 +650,7 @@ int LLLexer::LexIdentifier() { /// HexPPC128Constant 0xM[0-9A-Fa-f]+ int LLLexer::Lex0x() { CurPtr = TokStart + 2; - + char Kind; if (CurPtr[0] >= 'K' && CurPtr[0] <= 'M') { Kind = *CurPtr++; @@ -661,18 +663,18 @@ int LLLexer::Lex0x() { CurPtr = TokStart+1; return '0'; } - + while (...