about summary refs log tree commit diff stats
path: root/miasm2/jitter/op_semantics.h
diff options
context:
space:
mode:
authorAjax <commial@gmail.com>2018-05-15 15:52:16 +0200
committerAjax <commial@gmail.com>2018-05-15 15:52:16 +0200
commitd87f5e3c45edd586c6c1ac77a3e485a33e95e236 (patch)
treecab4451d098d94a9de3a13bb9cd1b3721b1f51f1 /miasm2/jitter/op_semantics.h
parentb0db47c82568f7bf78ce1fdfe059569d6efd019a (diff)
downloadmiasm-d87f5e3c45edd586c6c1ac77a3e485a33e95e236.tar.gz
miasm-d87f5e3c45edd586c6c1ac77a3e485a33e95e236.zip
Rename x86 specific op 'cpuid' to 'x86_cpuid'
Diffstat (limited to '')
-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);