ac: add i64_0 and i64_1 to llvm build context
authorTimothy Arceri <tarceri@itsqueeze.com>
Sat, 13 Jan 2018 23:06:36 +0000 (10:06 +1100)
committerTimothy Arceri <tarceri@itsqueeze.com>
Sun, 14 Jan 2018 00:40:03 +0000 (11:40 +1100)
These will be used in the following patch.

Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
src/amd/common/ac_llvm_build.c
src/amd/common/ac_llvm_build.h

index f0a1788eaf2cb11ceab02b7991a9971cadd43070..3467bba693efb34bef17d2f3eedde9c41b8b42d7 100644 (file)
@@ -76,6 +76,8 @@ ac_llvm_context_init(struct ac_llvm_context *ctx, LLVMContextRef context,
 
        ctx->i32_0 = LLVMConstInt(ctx->i32, 0, false);
        ctx->i32_1 = LLVMConstInt(ctx->i32, 1, false);
+       ctx->i64_0 = LLVMConstInt(ctx->i64, 0, false);
+       ctx->i64_1 = LLVMConstInt(ctx->i64, 1, false);
        ctx->f32_0 = LLVMConstReal(ctx->f32, 0.0);
        ctx->f32_1 = LLVMConstReal(ctx->f32, 1.0);
        ctx->f64_0 = LLVMConstReal(ctx->f64, 0.0);
index 78322bbf015684975d06e638305709bfe9c665a7..f87889daf6de11660b26980ec223173604e72fa5 100644 (file)
@@ -61,6 +61,8 @@ struct ac_llvm_context {
 
        LLVMValueRef i32_0;
        LLVMValueRef i32_1;
+       LLVMValueRef i64_0;
+       LLVMValueRef i64_1;
        LLVMValueRef f32_0;
        LLVMValueRef f32_1;
        LLVMValueRef f64_0;