Commit 1e7251a7 by Joey Ye Committed by Joey Ye

nsdmi-union5.C: Change to runtime test.

2014-04-24  Joey Ye  <joey.ye@arm.com>

        * g++.dg/cpp0x/nsdmi-union5.C: Change to runtime test.

From-SVN: r209738
parent 683e3333
2014-04-24 Joey Ye <joey.ye@arm.com>
* g++.dg/cpp0x/nsdmi-union5.C: Change to runtime test.
2014-04-24 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
* lib/target-supports.exp (check_effective_target_vect_bswap): New.
......
// PR c++/58701
// { dg-require-effective-target c++11 }
// { dg-final { scan-assembler "7" } }
// { dg-do run { target c++11 } }
static union
{
......@@ -9,3 +8,10 @@ static union
int i = 7;
};
};
extern "C" void abort(void);
int main()
{
if (i != 7) abort();
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment