Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions llvm/include/llvm/CodeGen/TargetLowering.h
Original file line number Diff line number Diff line change
Expand Up @@ -4842,9 +4842,8 @@ class TargetLowering : public TargetLoweringBase {
/// AsmOperandInfo, setting OpInfo.ConstraintCode and OpInfo.ConstraintType.
/// If the actual operand being passed in is available, it can be passed in as
/// Op, otherwise an empty SDValue can be passed.
virtual void ComputeConstraintToUse(AsmOperandInfo &OpInfo,
SDValue Op,
SelectionDAG *DAG = nullptr) const;
void ComputeConstraintToUse(AsmOperandInfo &OpInfo, SDValue Op,
SelectionDAG *DAG = nullptr) const;

/// Given a constraint, return the type of constraint it is for this target.
virtual ConstraintType getConstraintType(StringRef Constraint) const;
Expand Down
3 changes: 2 additions & 1 deletion llvm/tools/llvm-extract/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@ set(LLVM_LINK_COMPONENTS
BitWriter
Core
IPO
IRReader
IRPrinter
IRReader
Passes
SelectionDAG
Support
)

Expand Down
3 changes: 2 additions & 1 deletion llvm/unittests/Analysis/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@ set(LLVM_LINK_COMPONENTS
Analysis
AsmParser
Core
IPO
Passes
SelectionDAG
Support
TargetParser
TransformUtils
IPO
)

set(ANALYSIS_TEST_SOURCES
Expand Down
2 changes: 1 addition & 1 deletion llvm/unittests/Passes/Plugins/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# work with DLLs on Windows (where a shared library can't have undefined
# references), so just skip this testcase on Windows.
if (NOT WIN32 AND NOT CYGWIN)
set(LLVM_LINK_COMPONENTS Support Passes Core AsmParser)
set(LLVM_LINK_COMPONENTS Support Passes Core AsmParser SelectionDAG)
add_llvm_unittest(PluginsTests
PluginsTest.cpp
)
Expand Down
1 change: 1 addition & 0 deletions polly/unittests/DeLICM/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Solaris ld requires this dependency to be made explicit for shared builds.
set(LLVM_LINK_COMPONENTS
Core
SelectionDAG
)

add_polly_unittest(DeLICMTests
Expand Down
3 changes: 3 additions & 0 deletions polly/unittests/ScheduleOptimizer/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
set(LLVM_LINK_COMPONENTS
SelectionDAG
)
add_polly_unittest(ScheduleOptimizerTests
ScheduleTreeTransformTest.cpp
)
3 changes: 3 additions & 0 deletions polly/unittests/ScopPassManager/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
set(LLVM_LINK_COMPONENTS
SelectionDAG
)
add_polly_unittest(ScopPassManagerTests
PassManagerTest.cpp
)
Expand Down