search for: _def

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

Did you mean: 3def
2003 Jun 19
3
Exec file incompatible with hardware
...he clear), the samba version is samba-1.9.18p2. I copied over the source and ran make, then make install - during the make install I received these errors: Installing codepage files in /usr/local/samba/lib/codepages Creating codepage file /usr/local/samba/lib/codepages/codepage.437 from codepage _def.437 installcp.sh[23]: /usr/local/samba/bin/make_smbcodepage: Execute permission deni ed. Creating codepage file /usr/local/samba/lib/codepages/codepage.850 from codepage _def.850 installcp.sh[23]: /usr/local/samba/bin/make_smbcodepage: Execute permission deni ed. Creating codepage file /usr/...
2015 Apr 28
2
[LLVMdev] Lowering intrinsic that return an int1
Hi all, I'm playing with intrinsics and I was wondering how to lower an intrinsic that should return, for example, an int1? More precisely, how to return the value when working with MachineInst? First, I have defined an instrinsic in "Intrinsics.td": _def int_antivm : Intrinsic<[llvm_i1_ty], [], [], "llvm.antivm">;_ Then I want to lower it in the X86 backend, so I defined a pseudo instruction in "X86InstrCompiler.td": _let usesCustomInserter = 1, Defs = [EFLAGS] in {_ _def ANTIVM : PseudoI<(outs), (ins), [(int_antivm...