]> Git Repo - qemu.git/blobdiff - include/qemu/int128.h
Merge remote-tracking branch 'remotes/armbru/tags/pull-qapi-2016-10-25' into staging
[qemu.git] / include / qemu / int128.h
index f59703143ae6c45db90658c8fa103e89da63ad86..c5988813df4cd766ac99f5f7afac4473e41c48af 100644 (file)
@@ -1,9 +1,6 @@
 #ifndef INT128_H
 #define INT128_H
 
-#include <assert.h>
-#include <stdint.h>
-#include <stdbool.h>
 
 typedef struct Int128 Int128;
 
@@ -38,6 +35,11 @@ static inline Int128 int128_2_64(void)
     return (Int128) { 0, 1 };
 }
 
+static inline Int128 int128_exts64(int64_t a)
+{
+    return (Int128) { .lo = a, .hi = (a < 0) ? -1 : 0 };
+}
+
 static inline Int128 int128_and(Int128 a, Int128 b)
 {
     return (Int128) { a.lo & b.lo, a.hi & b.hi };
This page took 0.024476 seconds and 4 git commands to generate.