diff options
author | Evan Cheng <evan.cheng@apple.com> | 2007-01-12 22:51:10 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2007-01-12 22:51:10 +0000 |
commit | 61a4be88b4212aa3e39163de3dd045abcf378bdb (patch) | |
tree | 20945899240de6dc007d76393a8cb33649e5f575 /llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | |
parent | 12c063c4051434f2eee498b8ef142a9fcc08ac23 (diff) | |
download | bcm5719-llvm-61a4be88b4212aa3e39163de3dd045abcf378bdb.tar.gz bcm5719-llvm-61a4be88b4212aa3e39163de3dd045abcf378bdb.zip |
Minor fix.
llvm-svn: 33149
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp index 7b4a6784580..d780dd28c93 100644 --- a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp @@ -23,7 +23,7 @@ using namespace llvm; /// InitLibcallNames - Set default libcall names. /// -static void InitLibcallNames(std::string *Names) { +static void InitLibcallNames(const char **Names) { Names[RTLIB::SHL_I32] = "__ashlsi3"; Names[RTLIB::SHL_I64] = "__ashldi3"; Names[RTLIB::SRL_I32] = "__lshrsi3"; |