extend/os/linux/hardware/cpu: fix typo.

CPU was transformed into a class in 8d995e961f549e555f405d2567235dab53f6baad.
This commit is contained in:
Sebastian Staudt 2016-05-09 09:41:30 +02:00 committed by Mike McQuaid
parent a558629654
commit 57bf33302a

View File

@ -1,6 +1,6 @@
module Hardware module Hardware
class CPU class CPU
extend self class << self
OPTIMIZATION_FLAGS = { OPTIMIZATION_FLAGS = {
:penryn => "-march=core2 -msse4.1", :penryn => "-march=core2 -msse4.1",
@ -64,4 +64,5 @@ module Hardware
is_64_bit? ? 64 : 32 is_64_bit? ? 64 : 32
end end
end end
end
end end