diff options
author | Chris Lattner <sabre@nondot.org> | 2001-11-26 19:19:27 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2001-11-26 19:19:27 +0000 |
commit | e977e5d97309f0c24a1ca9aec8743dc940659348 (patch) | |
tree | 79d1822897176350e765d1122801ba56de67c92a /llvm/lib/ExecutionEngine/Interpreter | |
parent | 3d9510ccc8d3ab9dc39b7620f3080b53e34fa8ee (diff) | |
download | bcm5719-llvm-e977e5d97309f0c24a1ca9aec8743dc940659348.tar.gz bcm5719-llvm-e977e5d97309f0c24a1ca9aec8743dc940659348.zip |
Remove invalid,unneccesary ## token
llvm-svn: 1391
Diffstat (limited to 'llvm/lib/ExecutionEngine/Interpreter')
-rw-r--r-- | llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp b/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp index b42fb50ecdd..04a73e85561 100644 --- a/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp +++ b/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp @@ -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();\ } |