forked from OSchip/llvm-project
Fix Wmismatched-tags warning.
InlineAsmIdentifierInfo was declared a class in some places and a struct in others. Partial reversion of rL314508 llvm-svn: 314536
This commit is contained in:
parent
a7bf226529
commit
1ad9ea3ae2
|
@ -34,8 +34,7 @@ class MCStreamer;
|
|||
class MCTargetAsmParser;
|
||||
class SourceMgr;
|
||||
|
||||
class InlineAsmIdentifierInfo {
|
||||
public:
|
||||
struct InlineAsmIdentifierInfo {
|
||||
enum IdKind {
|
||||
IK_Invalid, // Initial state. Unexpected after a successful parsing.
|
||||
IK_Label, // Function/Label reference.
|
||||
|
|
Loading…
Reference in New Issue