Lexer doesn't create typehandle gross stuff now, parser does.

llvm-svn: 2103
This commit is contained in:
Chris Lattner 2002-04-04 19:22:17 +00:00
parent 9ba54b2f31
commit f269b9d236
1 changed files with 1 additions and 6 deletions

View File

@ -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); }