diff options
| author | 2014-02-07 07:25:14 +0000 | |
|---|---|---|
| committer | 2014-02-07 07:25:14 +0000 | |
| commit | d1b9241a91f5eef9995e54cf80f9789045e5a233 (patch) | |
| tree | c67eea52a349c2ea7f2c3bdda8e73933c05531a8 /compiler/llvm/compiler_llvm.cc | |
| parent | 822115a225185d2896607eb08d70ce5c7099adef (diff) | |
| parent | ef7d42fca18c16fbaf103822ad16f23246e2905d (diff) | |
Merge "Object model changes to support 64bit."
Diffstat (limited to 'compiler/llvm/compiler_llvm.cc')
| -rw-r--r-- | compiler/llvm/compiler_llvm.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/llvm/compiler_llvm.cc b/compiler/llvm/compiler_llvm.cc index 94408bb39c..6563eb5475 100644 --- a/compiler/llvm/compiler_llvm.cc +++ b/compiler/llvm/compiler_llvm.cc @@ -126,7 +126,7 @@ LlvmCompilationUnit* CompilerLLVM::AllocateCompilationUnit() { MutexLock GUARD(Thread::Current(), next_cunit_id_lock_); LlvmCompilationUnit* cunit = new LlvmCompilationUnit(this, next_cunit_id_++); if (!bitcode_filename_.empty()) { - cunit->SetBitcodeFileName(StringPrintf("%s-%zu", + cunit->SetBitcodeFileName(StringPrintf("%s-%u", bitcode_filename_.c_str(), cunit->GetCompilationUnitId())); } |