[PATCH] D12920: Add TargetCustom type to PseudoSourceValue
Marcello Maggioni via llvm-commits
llvm-commits at lists.llvm.org
Wed Sep 16 17:55:16 PDT 2015
kariddi updated this revision to Diff 34954.
kariddi added a comment.
Updated MIRPrinter to handle this new enum val in switch case.
http://reviews.llvm.org/D12920
Files:
include/llvm/CodeGen/PseudoSourceValue.h
lib/CodeGen/MIRPrinter.cpp
Index: lib/CodeGen/MIRPrinter.cpp
===================================================================
--- lib/CodeGen/MIRPrinter.cpp
+++ lib/CodeGen/MIRPrinter.cpp
@@ -892,6 +892,9 @@
printLLVMNameWithoutPrefix(
OS, cast<ExternalSymbolPseudoSourceValue>(PVal)->getSymbol());
break;
+ case PseudoSourceValue::TargetCustom:
+ OS << "target-custom";
+ break;
}
}
printOffset(Op.getOffset());
Index: include/llvm/CodeGen/PseudoSourceValue.h
===================================================================
--- include/llvm/CodeGen/PseudoSourceValue.h
+++ include/llvm/CodeGen/PseudoSourceValue.h
@@ -40,7 +40,8 @@
ConstantPool,
FixedStack,
GlobalValueCallEntry,
- ExternalSymbolCallEntry
+ ExternalSymbolCallEntry,
+ TargetCustom
};
private:
@@ -63,6 +64,7 @@
bool isGOT() const { return Kind == GOT; }
bool isConstantPool() const { return Kind == ConstantPool; }
bool isJumpTable() const { return Kind == JumpTable; }
+ bool isTargetCustom() const { return Kind == TargetCustom; }
/// Test whether the memory pointed to by this PseudoSourceValue has a
/// constant value.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D12920.34954.patch
Type: text/x-patch
Size: 1169 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20150917/b65de311/attachment.bin>
More information about the llvm-commits
mailing list