* gcc.target/i386/xgetsetbv.c: Fix whitespace.
authorUros Bizjak <uros@gcc.gnu.org>
Thu, 10 May 2018 21:19:59 +0000 (23:19 +0200)
committerUros Bizjak <uros@gcc.gnu.org>
Thu, 10 May 2018 21:19:59 +0000 (23:19 +0200)
From-SVN: r260137

gcc/testsuite/gcc.target/i386/xgetsetbv.c

index 9ef487caf62e9f0e9e0baa34068a36e255d0b7dc..956db76b5b81e45e3cc8eaa5d7586dcb2ca71848 100644 (file)
@@ -8,20 +8,20 @@
 unsigned long long
 foo (unsigned x, unsigned y)
 {
- _xsetbv (x, y);
 _xsetbv (x, y);
   return _xgetbv (x);
 }
 
 unsigned long long
 bar (unsigned x, unsigned long long y)
 {
- _xsetbv (x, y);
 _xsetbv (x, y);
   return _xgetbv (x);
 }
 
 unsigned long long
 baz (void)
 {
- _xsetbv (0, 0);
 _xsetbv (0, 0);
   return _xgetbv (0);
 }