From: Uros Bizjak Date: Thu, 10 May 2018 21:19:59 +0000 (+0200) Subject: * gcc.target/i386/xgetsetbv.c: Fix whitespace. X-Git-Tag: upstream/12.2.0~31903 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b0aed64bdef6a581650576edbfbb6e6721cc9a9a;p=platform%2Fupstream%2Fgcc.git * gcc.target/i386/xgetsetbv.c: Fix whitespace. From-SVN: r260137 --- diff --git a/gcc/testsuite/gcc.target/i386/xgetsetbv.c b/gcc/testsuite/gcc.target/i386/xgetsetbv.c index 9ef487c..956db76 100644 --- a/gcc/testsuite/gcc.target/i386/xgetsetbv.c +++ b/gcc/testsuite/gcc.target/i386/xgetsetbv.c @@ -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); }