This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH] testsuite: skip morestack.exp in sparc targets


    > +# This test does not work on targets for which -fsplit-stack is not
    > +# supported.
    > +if { [istarget sparc*-*-linux-gnu] } {
    > +    return
    > +}
    > +
    >  if [get_compiler_info] {
    >      return -1
    >  }
    
    It might be simpler just to enable for the targets that do support
    -fsplit-stack:
    
    if { ![istarget i?86-*-*] && ![istarget x86_64-*-* ] } {
      return
    }

Yes, much better.  I wasn't sure about other archs :)
Could someone apply this change?


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]