File tree 1 file changed +2
-2
lines changed 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ const LlvmObject = @import("../codegen/llvm.zig").Object;
24
24
base : link.File ,
25
25
llvm_object : * LlvmObject ,
26
26
27
- pub fn createEmpty (gpa : * Allocator , options : link.Options ) ! * NvPtx {
27
+ pub fn createEmpty (gpa : Allocator , options : link.Options ) ! * NvPtx {
28
28
const nvptx = try gpa .create (NvPtx );
29
29
nvptx .* = .{
30
30
.base = .{
@@ -52,7 +52,7 @@ pub fn createEmpty(gpa: *Allocator, options: link.Options) !*NvPtx {
52
52
return nvptx ;
53
53
}
54
54
55
- pub fn openPath (allocator : * Allocator , sub_path : []const u8 , options : link.Options ) ! * NvPtx {
55
+ pub fn openPath (allocator : Allocator , sub_path : []const u8 , options : link.Options ) ! * NvPtx {
56
56
assert (options .object_format == .nvptx );
57
57
if (! build_options .have_llvm or ! options .use_llvm ) return error .NvptxRequiresLlvm ;
58
58
You can’t perform that action at this time.
0 commit comments