mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Add a default constructor to AsmWriterOperand to make VS2008sp1 happy. (AsmWriterOperand is used in a std::pair, and VS need to generate the default constructor of this pair).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@58185 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
aaf510c932
commit
3bff2df61c
@ -45,6 +45,9 @@ namespace llvm {
|
||||
/// an operand, specified with syntax like ${opname:modifier}.
|
||||
std::string MiModifier;
|
||||
|
||||
// To make VS STL happy
|
||||
AsmWriterOperand():OperandType(isLiteralTextOperand) {}
|
||||
|
||||
AsmWriterOperand(const std::string &LitStr)
|
||||
: OperandType(isLiteralTextOperand), Str(LitStr) {}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user