Displaying 2 results from an estimated 2 matches for "macho_vanilla".
2014 Jun 23
3
[LLVMdev] Proposal: Improved regression test support for RuntimeDyld/MCJIT.
...s are passed
via "-check=<filename>" arguments, and rules are read from any line
prefixed with the string "# rtdyld-check: ". The intended workflow is
modeled on the FileCheck regression tests.
Here's an example of what a test case for a test for an x86-64 PC-relative
MACHO_VANILLA relocation would look like:
; RUN: clang -triple x86_64-apple-macosx10.9.0 -c -o foo.o %s
; RUN: llvm-rtdyld -verify -check=foo.s foo.o
; RUN: rm foo.o
;
; Test an x86-64 PC-relative MACHO_VANILLA relocation.
.text
.globl bar
.align 16, 0x90
bar:
retq
.g...
2014 Jun 24
4
[LLVMdev] Proposal: Improved regression test support for RuntimeDyld/MCJIT.
...;" arguments, and rules are read from any line prefixed
>> with the string "# rtdyld-check: ". The intended workflow is modeled on the
>> FileCheck regression tests.
>>
>> Here's an example of what a test case for a test for an x86-64 PC-relative
>> MACHO_VANILLA relocation would look like:
>>
>> ; RUN: clang -triple x86_64-apple-macosx10.9.0 -c -o foo.o %s
>> ; RUN: llvm-rtdyld -verify -check=foo.s foo.o
>> ; RUN: rm foo.o
>> ;
>> ; Test an x86-64 PC-relative MACHO_VANILLA relocation.
>>
>> .text
>...