]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
mips32: minor style change to r16181
authorPetar Jovanovic <mips32r2@gmail.com>
Fri, 9 Dec 2016 18:51:58 +0000 (18:51 +0000)
committerPetar Jovanovic <mips32r2@gmail.com>
Fri, 9 Dec 2016 18:51:58 +0000 (18:51 +0000)
Divide one line into two lines that fit "80 columns" rule.
Non-functional change.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@16182

none/tests/mips32/round_fpu64.c

index 6db116b0ebc208c55a19d9724d1728f5f22f9093..e35c8b5a81f963e4b064a458869ee3614c32409b 100644 (file)
@@ -72,7 +72,8 @@ const double fs_d[] = {
       : "$f0"                     \
    );
 
-#if (__mips==32) && (__mips_isa_rev>=2) && ((__mips_fpr==64) || (__mips_fpr==xx))
+#if (__mips==32) && (__mips_isa_rev>=2) && \
+    ((__mips_fpr==64) || (__mips_fpr==xx))
 void set_rounding_mode(round_mode_t mode)
 {
    switch(mode) {
@@ -190,7 +191,8 @@ int FCSRRoundingMode(flt_round_op_t op)
 
 int main()
 {
-#if (__mips==32) && (__mips_isa_rev>=2) && ((__mips_fpr==64) || (__mips_fpr==xx))
+#if (__mips==32) && (__mips_isa_rev>=2) && \
+    ((__mips_fpr==64) || (__mips_fpr==xx))
    flt_round_op_t op;
    signal(SIGILL, handler);
    /* Test fpu64 mode. */