mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-12 17:32:19 +00:00
Add a flag which effectively disables field sensitivity
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5506 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1dbd1b820f
commit
ca3f790f71
@ -50,6 +50,9 @@ namespace {
|
||||
DisableDirectCallOpt("disable-direct-call-dsopt", cl::Hidden,
|
||||
cl::desc("Disable direct call optimization in "
|
||||
"DSGraph construction"));
|
||||
cl::opt<bool>
|
||||
DisableFieldSensitivity("disable-ds-field-sensitivity", cl::Hidden,
|
||||
cl::desc("Disable field sensitivity in DSGraphs"));
|
||||
|
||||
//===--------------------------------------------------------------------===//
|
||||
// GraphBuilder Class
|
||||
@ -108,6 +111,8 @@ namespace {
|
||||
DSNode *createNode(DSNode::NodeTy NodeType, const Type *Ty = 0) {
|
||||
DSNode *N = new DSNode(NodeType, Ty); // Create the node
|
||||
Nodes.push_back(N); // Add node to nodes list
|
||||
if (DisableFieldSensitivity)
|
||||
N->foldNodeCompletely();
|
||||
return N;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user