search for: whien

Displaying 3 results from an estimated 3 matches for "whien".

Did you mean: when
2009 Sep 22
3
[LLVMdev] StructLayout
...which does the same thing. Unfortunately, this is not correct for bitfields. For example, LLVM reports this struct: typedef struct test1 { short f0 : 10; char f1 : 5; long f2 : 1; long f3 : 45; } test1_t; which in LLVM is: %test1 = type { i10, i5, i1, i45 } to have size 12 on x86-64 whien it should have size 8. I don't know how to work around this since the original bitfield type has been lost by the time we translate to LLVM. Does this need to be handled in the frontend, to munge the struct type and add the necessary masking and shifting so it works correctly? What does llv...
2011 Jan 28
1
Ubuntu?
.... The Keyboard: I have to hit the quote button twice to get a quote or apostrophe! I tried adjusting keyboard settings but nothing changed. And the RKWard GUI won´t recognize quotes from my machines even though they show up on the RKWard text editor. On the other hand, RKWard will quoted material whien I copy and paste material with quotes, such as in a help.search query. Thank you in advance, Matt [[alternative HTML version deleted]]
2009 Sep 23
0
[LLVMdev] StructLayout
...or bitfields. For example, > LLVM reports this struct: > > typedef struct test1 { > short f0 : 10; > char f1 : 5; > long f2 : 1; > long f3 : 45; > } test1_t; > > which in LLVM is: > > %test1 = type { i10, i5, i1, i45 } > > to have size 12 on x86-64 whien it should have size 8. > > I don't know how to work around this since the original bitfield type has > been > lost by the time we translate to LLVM. > > Does this need to be handled in the frontend, to munge the struct type > and add the necessary masking and shifting so it...