mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Lexer doesn't create typehandle gross stuff now, parser does.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2103 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0009dac2bf
commit
4e4cae87f9
@ -146,14 +146,9 @@ long { llvmAsmlval.PrimType = Type::LongTy ; return LONG; }
|
||||
ulong { llvmAsmlval.PrimType = Type::ULongTy ; return ULONG; }
|
||||
float { llvmAsmlval.PrimType = Type::FloatTy ; return FLOAT; }
|
||||
double { llvmAsmlval.PrimType = Type::DoubleTy; return DOUBLE; }
|
||||
|
||||
type { llvmAsmlval.PrimType = Type::TypeTy ; return TYPE; }
|
||||
|
||||
label { llvmAsmlval.PrimType = Type::LabelTy ; return LABEL; }
|
||||
opaque { llvmAsmlval.TypeVal =
|
||||
new PATypeHolder<Type>(OpaqueType::get());
|
||||
return OPAQUE;
|
||||
}
|
||||
opaque { return OPAQUE; }
|
||||
|
||||
|
||||
not { RET_TOK(UnaryOpVal, Not, NOT); }
|
||||
|
Loading…
Reference in New Issue
Block a user