Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
LLVM bpEVL
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
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
Lorenzo Albano
LLVM bpEVL
Commits
fbc229dc
Commit
fbc229dc
authored
8 years ago
by
Bob Haarman
Browse files
Options
Downloads
Patches
Plain Diff
added missing files for r293965
llvm-svn: 293966
parent
35989d6b
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lld/include/lld/Core/TargetOptionsCommandFlags.h
+18
-0
18 additions, 0 deletions
lld/include/lld/Core/TargetOptionsCommandFlags.h
lld/lib/Core/TargetOptionsCommandFlags.cpp
+28
-0
28 additions, 0 deletions
lld/lib/Core/TargetOptionsCommandFlags.cpp
with
46 additions
and
0 deletions
lld/include/lld/Core/TargetOptionsCommandFlags.h
0 → 100644
+
18
−
0
View file @
fbc229dc
//===-- TargetOptionsCommandFlags.h ----------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// Helper to create TargetOptions from command line flags.
//
//===----------------------------------------------------------------------===//
#include
"llvm/Target/TargetOptions.h"
namespace
lld
{
llvm
::
TargetOptions
InitTargetOptionsFromCodeGenFlags
();
}
This diff is collapsed.
Click to expand it.
lld/lib/Core/TargetOptionsCommandFlags.cpp
0 → 100644
+
28
−
0
View file @
fbc229dc
//===-- TargetOptionsCommandFlags.cpp ---------------------------*- C++ -*-===//
//
// The LLVM Linker
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file exists as a place for global variables defined in LLVM's
// CodeGen/CommandFlags.h. By putting the resulting object file in
// an archive and linking with it, the definitions will automatically be
// included when needed and skipped when already present.
//
//===----------------------------------------------------------------------===//
#include
"lld/Core/TargetOptionsCommandFlags.h"
#include
"llvm/CodeGen/CommandFlags.h"
#include
"llvm/Target/TargetOptions.h"
// Define an externally visible version of
// InitTargetOptionsFromCodeGenFlags, so that its functionality can be
// used without having to include llvm/CodeGen/CommandFlags.h, which
// would lead to multiple definitions of the command line flags.
llvm
::
TargetOptions
lld
::
InitTargetOptionsFromCodeGenFlags
()
{
return
::
InitTargetOptionsFromCodeGenFlags
();
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment