Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
Hercules
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
llvm
Hercules
Merge requests
!218
Add more LLVM attributes
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add more LLVM attributes
llvm_attrs
into
main
Overview
0
Commits
3
Pipelines
3
Changes
1
Merged
rarbore2
requested to merge
llvm_attrs
into
main
2 weeks ago
Overview
0
Commits
3
Pipelines
3
Changes
1
Expand
Add more LLVM attributes in the CPU backend.
0
0
Merge request reports
Viewing commit
8fa54354
Prev
Next
Show latest version
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
8fa54354
fix
· 8fa54354
Russel Arbore
authored
2 weeks ago
hercules_cg/src/cpu.rs
+
2
−
2
Options
@@ -68,7 +68,7 @@ impl<'a> CPUContext<'a> {
if
self
.types
[
return_type
.idx
()]
.is_primitive
()
{
write!
(
w
,
"define dso_local {} @{}_{}("
,
"define dso_local
nounwind nosync willreturn norecurse
{} @{}_{}("
,
self
.get_type
(
return_type
),
self
.module_name
,
self
.function.name
,
@@ -96,7 +96,7 @@ impl<'a> CPUContext<'a> {
)
?
;
write!
(
w
,
"define dso_local void @{}_{}("
,
"define dso_local
nounwind nosync willreturn norecurse
void @{}_{}("
,
self
.module_name
,
self
.function.name
,
)
?
;
}
Loading