intel/compiler: avoid truncating int64_t to int
authorMaya Rashish <maya@netbsd.org>
Thu, 26 Sep 2019 14:14:34 +0000 (17:14 +0300)
committerMatt Turner <mattst88@gmail.com>
Thu, 26 Sep 2019 17:46:26 +0000 (17:46 +0000)
Reviewed-by: Matt Turner <mattst88@gmail.com>
Signed-off-by: Maya Rashish <maya@netbsd.org>
src/intel/compiler/brw_fs_combine_constants.cpp

index 0fff878..182c24b 100644 (file)
@@ -232,7 +232,7 @@ get_constant_value(const struct gen_device_info *devinfo,
       break;
    }
    case BRW_REGISTER_TYPE_Q: {
-      int64_t val = !can_do_source_mods ? src->d64 : abs(src->d64);
+      int64_t val = !can_do_source_mods ? src->d64 : llabs(src->d64);
       memcpy(out, &val, 8);
       break;
    }