Displaying 7 results from an estimated 7 matches for "llvm_supports_target".
2010 Jul 27
3
[LLVMdev] Win32 COFF Support patch 5 (the final patch in the saga!)
...false for Win32.
What do they do?
>> diff --git a/test/MC/COFF/dg.exp b/test/MC/COFF/dg.exp
>> new file mode 100644
>> index 0000000..7b7bd4e
>> --- /dev/null
>> +++ b/test/MC/COFF/dg.exp
>> @@ -0,0 +1,5 @@
>> +load_lib llvm.exp
>> +
>> +if { [llvm_supports_target X86] } {
>> + RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{ll}]]
>> +}
>
> This should be *.{s}.
This has to be *.{ll} for now because llvm-mc cannot parse COFF .s files.
> --
>
> Otherwise looks good to me!
>
> - Daniel
- Michael Spencer
2010 Jul 30
0
[LLVMdev] Win32 COFF Support patch 5 (the final patch in the saga!)
...>>> diff --git a/test/MC/COFF/dg.exp b/test/MC/COFF/dg.exp
>>> new file mode 100644
>>> index 0000000..7b7bd4e
>>> --- /dev/null
>>> +++ b/test/MC/COFF/dg.exp
>>> @@ -0,0 +1,5 @@
>>> +load_lib llvm.exp
>>> +
>>> +if { [llvm_supports_target X86] } {
>>> + RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{ll}]]
>>> +}
>>
>> This should be *.{s}.
>
> This has to be *.{ll} for now because llvm-mc cannot parse COFF .s files.
Oh, right.
- Daniel
>
>> --
>>
>> Otherwise lo...
2010 Jul 30
2
[LLVMdev] Win32 COFF Support patch 5 (the final patch in the saga!)
...C/COFF/dg.exp b/test/MC/COFF/dg.exp
>>>> new file mode 100644
>>>> index 0000000..7b7bd4e
>>>> --- /dev/null
>>>> +++ b/test/MC/COFF/dg.exp
>>>> @@ -0,0 +1,5 @@
>>>> +load_lib llvm.exp
>>>> +
>>>> +if { [llvm_supports_target X86] } {
>>>> + RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{ll}]]
>>>> +}
>>>
>>> This should be *.{s}.
>>
>> This has to be *.{ll} for now because llvm-mc cannot parse COFF .s files.
>
> Oh, right.
>
> - Daniel
>
&...
2010 Jul 26
0
[LLVMdev] Win32 COFF Support patch 5 (the final patch in the saga!)
On 26 July 2010 18:08, Michael Spencer <bigcheesegs at gmail.com> wrote:
> On Mon, Jul 26, 2010 at 12:04 PM, Aaron Gray <aaronngray.lists at gmail.com>
> wrote:
> > You probably want to add Cygwin and MinGW32 Triples as well :-
> > case Triple::Win32:
> > + case Triple::Cygwin:
> > + case Triple::MinGW32:
> > return new
2010 Jul 26
2
[LLVMdev] Win32 COFF Support patch 5 (the final patch in the saga!)
On Mon, Jul 26, 2010 at 12:04 PM, Aaron Gray <aaronngray.lists at gmail.com> wrote:
> You probably want to add Cygwin and MinGW32 Triples as well :-
> case Triple::Win32:
> + case Triple::Cygwin:
> + case Triple::MinGW32:
> return new WindowsX86AsmBackend (T);
> Aaron
Can someone test this on those platforms? That change would effect
quite a few people.
-
2010 Nov 23
2
[LLVMdev] LLVM unit and regression tests, enabled targets and conditions
...rmeabi-hardfloat/llvm.src/test/CodeGen/Generic/2003-07-07-BadLongConst.ll
llc -march=thumb <
/opt/test-buildslave/osuosl/slave/build-x-4-armeabi-hardfloat/llvm.src/test/CodeGen/Generic/2003-07-07-BadLongConst.ll
for llvm configured with --enable-targets=arm.
Note that $each_target and targets/llvm_supports_target() are
different. In the above example $each_target is [arm, thumb] (see llc
--version), and targets is [ARM].
What do you think?
Few related random notes:
* We can keep the DejaGNU config files (or make similar LIT configs)
to turn off group of tests.
* XTARGET makes test failure treated as exp...
2010 Jul 30
0
[LLVMdev] Win32 COFF Support patch 5 (the final patch in the saga!)
...exp
>>>>> new file mode 100644
>>>>> index 0000000..7b7bd4e
>>>>> --- /dev/null
>>>>> +++ b/test/MC/COFF/dg.exp
>>>>> @@ -0,0 +1,5 @@
>>>>> +load_lib llvm.exp
>>>>> +
>>>>> +if { [llvm_supports_target X86] } {
>>>>> + RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{ll}]]
>>>>> +}
>>>>
>>>> This should be *.{s}.
>>>
>>> This has to be *.{ll} for now because llvm-mc cannot parse COFF .s files.
>>
>> Oh, r...