Eliminate Japanese comments

This commit is contained in:
Masamichi Takagi
2017-07-15 20:02:55 +09:00
parent effde241b9
commit 86dedc32fa
2 changed files with 5 additions and 5 deletions

View File

@ -762,10 +762,10 @@ void init_gettime_support(void)
uint64_t edx;
/* Check if Invariant TSC supported.
* Processors support for invariant TSC is indicated by
* Processor's support for invariant TSC is indicated by
* CPUID.80000007H:EDX[8].
* See page 2498 of the Intel64 and IA-32 Architectures Software
* Developers Manual - combined */
* Developer's Manual - combined */
op = 0x80000007;
asm volatile("cpuid" : "=a"(eax),"=b"(ebx),"=c"(ecx),"=d"(edx) : "a" (op));