MIR Serialization: Serialize the metadata machine operands.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@242916 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Alex Lorenz
2015-07-22 17:58:46 +00:00
parent c59ca90970
commit 03c5b6047e
7 changed files with 212 additions and 0 deletions

View File

@@ -310,6 +310,8 @@ static MIToken::TokenKind symbolToken(char C) {
return MIToken::equal;
case ':':
return MIToken::colon;
case '!':
return MIToken::exclaim;
default:
return MIToken::Error;
}