aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/R600/R600TextureIntrinsicsReplacer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/R600/R600TextureIntrinsicsReplacer.cpp b/lib/Target/R600/R600TextureIntrinsicsReplacer.cpp
index 938bd51..518a476 100644
--- a/lib/Target/R600/R600TextureIntrinsicsReplacer.cpp
+++ b/lib/Target/R600/R600TextureIntrinsicsReplacer.cpp
@@ -229,7 +229,7 @@ public:
Int32Type,
Int32Type,
};
- TexSign = FunctionType::get(V4f32Type, ArgsType);
+ TexSign = FunctionType::get(V4f32Type, ArgsType, /*isVarArg=*/false);
Type *ArgsQType[] = {
V4i32Type,
Int32Type,
@@ -242,7 +242,7 @@ public:
Int32Type,
Int32Type,
};
- TexQSign = FunctionType::get(V4f32Type, ArgsQType);
+ TexQSign = FunctionType::get(V4f32Type, ArgsQType, /*isVarArg=*/false);
return false;
}