Remove invalid,unneccesary ## token

llvm-svn: 1391
This commit is contained in:
Chris Lattner 2001-11-26 19:19:27 +00:00
parent 3d9510ccc8
commit e977e5d973
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ GenericValue lle_X_printString(MethodType *M, const vector<GenericValue> &ArgVal
GenericValue lle_X_print##TYPENAME(MethodType *M,\
const vector<GenericValue> &ArgVal) {\
assert(ArgVal.size() == 1 && "generic print only takes one argument!");\
assert(M->getParamTypes()[0].get()->getPrimitiveID() == Type::##TYPEID);\
assert(M->getParamTypes()[0].get()->getPrimitiveID() == Type::TYPEID);\
Interpreter::printValue(M->getParamTypes()[0], ArgVal[0]);\
return GenericValue();\
}