aboutsummaryrefslogtreecommitdiff
path: root/libgo/runtime/runtime.c
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@gcc.gnu.org>2014-01-06 03:01:58 +0000
committerIan Lance Taylor <ian@gcc.gnu.org>2014-01-06 03:01:58 +0000
commit9596ecdf8c46c4d4f837c70bd6e722a36a23424c (patch)
treee2614db56d0d40cb72732f7e113ab889fbc69969 /libgo/runtime/runtime.c
parent662440a9c7851a0fd35765ac954c1cd9d859c98f (diff)
downloadgcc-9596ecdf8c46c4d4f837c70bd6e722a36a23424c.zip
gcc-9596ecdf8c46c4d4f837c70bd6e722a36a23424c.tar.gz
gcc-9596ecdf8c46c4d4f837c70bd6e722a36a23424c.tar.bz2
runtime: Remove unused runtime_cpuid variables.
From-SVN: r206353
Diffstat (limited to 'libgo/runtime/runtime.c')
-rw-r--r--libgo/runtime/runtime.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/libgo/runtime/runtime.c b/libgo/runtime/runtime.c
index 8fbc916..1a7c3c7 100644
--- a/libgo/runtime/runtime.c
+++ b/libgo/runtime/runtime.c
@@ -58,11 +58,6 @@ runtime_progname()
return argc == 0 ? nil : argv[0];
}
-// Information about what cpu features are available.
-// Set on startup in asm_{x86/amd64}.s.
-uint32 runtime_cpuid_ecx;
-uint32 runtime_cpuid_edx;
-
void
runtime_goargs(void)
{