mirror of
https://github.com/postgres/postgres.git
synced 2026-04-21 22:28:15 -04:00
Suppress unused-variable warning.
x86 machines lacking HAVE__CPUIDEX saw a complaint about
"unused variable 'reg'", per buildfarm as well as local
experience. Oversight in bcb2cf41f.
This commit is contained in:
parent
61c36a34a4
commit
b268928f93
1 changed files with 1 additions and 2 deletions
|
|
@ -241,9 +241,8 @@ x86_tsc_frequency_khz(void)
|
|||
static uint32
|
||||
x86_hypervisor_tsc_frequency_khz(void)
|
||||
{
|
||||
unsigned int reg[4] = {0};
|
||||
|
||||
#if defined(HAVE__CPUIDEX)
|
||||
unsigned int reg[4] = {0};
|
||||
|
||||
/*
|
||||
* The hypervisor is determined using the 0x40000000 Hypervisor
|
||||
|
|
|
|||
Loading…
Reference in a new issue