Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Stefan Strogin
flac
Commits
bba26a55
Commit
bba26a55
authored
Jun 28, 2016
by
Erik de Castro Lopo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libFLAC/cpu.c: Add parens to avoid compiler warnings
parent
42c5de6e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
src/libFLAC/cpu.c
src/libFLAC/cpu.c
+4
-2
No files found.
src/libFLAC/cpu.c
View file @
bba26a55
...
...
@@ -323,8 +323,9 @@ ia32_cpu_info (FLAC__CPUInfo *info)
info
->
ia32
.
fma
=
false
;
}
if
(
FLAC__HAS_X86INTRIN
&&
FLAC__AVX_SUPPORTED
)
if
(
FLAC__HAS_X86INTRIN
&&
FLAC__AVX_SUPPORTED
)
{
dfprintf
(
stderr
,
" AVX OS sup . %c
\n
"
,
info
->
ia32
.
avx
?
'Y'
:
'n'
);
}
#else
info
->
use_asm
=
false
;
#endif
...
...
@@ -384,8 +385,9 @@ x86_64_cpu_info (FLAC__CPUInfo *info)
info
->
x86
.
fma
=
false
;
}
if
(
FLAC__AVX_SUPPORTED
)
if
(
FLAC__AVX_SUPPORTED
)
{
dfprintf
(
stderr
,
" AVX OS sup . %c
\n
"
,
info
->
x86
.
avx
?
'Y'
:
'n'
);
}
#endif
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment