1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

Remove invalid,unneccesary ## token

llvm-svn: 1391
This commit is contained in:
Chris Lattner 2001-11-26 19:19:27 +00:00
parent 9588b188db
commit f4cbfaed0a

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();\
}