about summary refs log tree commit diff stats
path: root/miasm2/jitter/op_semantics.h
diff options
context:
space:
mode:
authorserpilliere <serpilliere@users.noreply.github.com>2018-05-15 19:46:08 +0200
committerGitHub <noreply@github.com>2018-05-15 19:46:08 +0200
commitc2b0779c68ce50514e19e021084328d265b53663 (patch)
treecab4451d098d94a9de3a13bb9cd1b3721b1f51f1 /miasm2/jitter/op_semantics.h
parentb0db47c82568f7bf78ce1fdfe059569d6efd019a (diff)
parentd87f5e3c45edd586c6c1ac77a3e485a33e95e236 (diff)
downloadmiasm-c2b0779c68ce50514e19e021084328d265b53663.tar.gz
miasm-c2b0779c68ce50514e19e021084328d265b53663.zip
Merge pull request #742 from commial/refactor/x86_cpuid
Rename x86 specific op 'cpuid' to 'x86_cpuid'
Diffstat (limited to 'miasm2/jitter/op_semantics.h')
-rw-r--r--miasm2/jitter/op_semantics.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/miasm2/jitter/op_semantics.h b/miasm2/jitter/op_semantics.h
index 3b71f6c6..a52afd42 100644
--- a/miasm2/jitter/op_semantics.h
+++ b/miasm2/jitter/op_semantics.h
@@ -77,7 +77,7 @@ unsigned int cnttrailzeros(uint64_t size, uint64_t src);
 		return r;						\
 	}
 
-unsigned int cpuid(unsigned int a, unsigned int reg_num);
+unsigned int x86_cpuid(unsigned int a, unsigned int reg_num);
 double int2double(unsigned int m);
 
 double fpu_fadd(double a, double b);