[llvm-commits] CVS: llvm/tools/bugpoint/CodeGeneratorBug.cpp
Chris Lattner
lattner at cs.uiuc.edu
Sun Apr 4 20:32:01 PDT 2004
Changes in directory llvm/tools/bugpoint:
CodeGeneratorBug.cpp updated: 1.40 -> 1.41
---
Log message:
Minor change
---
Diffs of the changes: (+1 -1)
Index: llvm/tools/bugpoint/CodeGeneratorBug.cpp
diff -u llvm/tools/bugpoint/CodeGeneratorBug.cpp:1.40 llvm/tools/bugpoint/CodeGeneratorBug.cpp:1.41
--- llvm/tools/bugpoint/CodeGeneratorBug.cpp:1.40 Sun Mar 14 14:50:42 2004
+++ llvm/tools/bugpoint/CodeGeneratorBug.cpp Sun Apr 4 20:31:50 2004
@@ -115,7 +115,7 @@
// 2. Use `GetElementPtr *funcName, 0, 0' to convert the string to an
// sbyte* so it matches the signature of the resolver function.
- std::vector<Constant*> GEPargs(2, Constant::getNullValue(Type::LongTy));
+ std::vector<Constant*> GEPargs(2, Constant::getNullValue(Type::IntTy));
// 3. Replace all uses of `func' with calls to resolver by:
// (a) Iterating through the list of uses of this function
More information about the llvm-commits
mailing list