diff options
| author | Duncan Sands <baldrick@free.fr> | 2009-10-06 15:40:36 +0000 |
|---|---|---|
| committer | Duncan Sands <baldrick@free.fr> | 2009-10-06 15:40:36 +0000 |
| commit | 9ed7b16bf33d191c4f58f41b128aded092cc4ea0 (patch) | |
| tree | 5a1196d794ebba33ff7470d5b0b8abfa948a0e04 /llvm/tools | |
| parent | fa21fe7c3d40396ab5c37e087e8b8d02167aee99 (diff) | |
| download | bcm5719-llvm-9ed7b16bf33d191c4f58f41b128aded092cc4ea0.tar.gz bcm5719-llvm-9ed7b16bf33d191c4f58f41b128aded092cc4ea0.zip | |
Introduce and use convenience methods for getting pointer types
where the element is of a basic builtin type. For example, to get
an i8* use getInt8PtrTy.
llvm-svn: 83379
Diffstat (limited to 'llvm/tools')
| -rw-r--r-- | llvm/tools/bugpoint/Miscompilation.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/tools/bugpoint/Miscompilation.cpp b/llvm/tools/bugpoint/Miscompilation.cpp index e1aeaf8efed..a5914178f12 100644 --- a/llvm/tools/bugpoint/Miscompilation.cpp +++ b/llvm/tools/bugpoint/Miscompilation.cpp @@ -704,8 +704,8 @@ static void CleanupAndPrepareModules(BugDriver &BD, Module *&Test, // Prototype: void *getPointerToNamedFunction(const char* Name) Constant *resolverFunc = Safe->getOrInsertFunction("getPointerToNamedFunction", - PointerType::getUnqual(Type::getInt8Ty(Safe->getContext())), - PointerType::getUnqual(Type::getInt8Ty(Safe->getContext())), + Type::getInt8PtrTy(Safe->getContext()), + Type::getInt8PtrTy(Safe->getContext()), (Type *)0); // Use the function we just added to get addresses of functions we need. |

