Displaying 2 results from an estimated 2 matches for "gr64tovr64".
2007 Nov 20
2
[LLVMdev] Problem with regression tests using stderr
...b/llvm.exp:
} elseif {[regexp {RUN: *([^&]+)(&&)?} $line match oneline suffix]} {
I don't understand what this is trying to do. What is intended by
the special handling of && here?
I found only one test that uses && on a RUN line,
test/CodeGen/X86/2007-07-03-GR64ToVR64.ll, and it's not clear to
me what it's doing there.
Dan
--
Dan Gohman, Cray Inc.
2007 Nov 21
0
[LLVMdev] Problem with regression tests using stderr
...p {RUN: *([^&]+)(&&)?} $line match oneline
> suffix]} {
>
> I don't understand what this is trying to do. What is intended by
> the special handling of && here?
>
> I found only one test that uses && on a RUN line,
> test/CodeGen/X86/2007-07-03-GR64ToVR64.ll, and it's not clear to
> me what it's doing there.
>
I think that it's a hold-over to how things used to be done. IIRC,
you had to have the && at the end of the RUN line if you had another
RUN line that needed to be executed. That's no longer the case, of
cour...