search for: e20afa8e

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

2015 Mar 04
2
[LLVMdev] Inline Assembly: Memory constraints with offsets
...sts.cs.uiuc.edu/mailman/listinfo/llvmdev -------------- next part -------------- A non-text attachment was scrubbed... Name: clang-implement-ZC.patch Type: application/octet-stream Size: 1177 bytes Desc: clang-implement-ZC.patch URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150304/e20afa8e/attachment.obj> -------------- next part -------------- A non-text attachment was scrubbed... Name: llvm-implement-ZC.patch Type: application/octet-stream Size: 975 bytes Desc: llvm-implement-ZC.patch URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150304/e20afa8e/attachment-0001...
2015 Mar 03
5
[LLVMdev] Inline Assembly: Memory constraints with offsets
Hi, I'm trying to implement the ZC inline assembly constraint for Mips. This constraint is a memory constraint that expands to an address with an offset (the range of the offset varies according to the subtarget), so the inline assembly in: int data[10]; void ZC(void) { asm volatile ("foo %0 %1" : : "ZC"(data[1]), "ZC"(data[2])); } Should expand to