summaryrefslogtreecommitdiff
path: root/src/compiler_llvm/utils_llvm.cc
diff options
context:
space:
mode:
author Shih-wei Liao <sliao@google.com> 2012-03-01 15:49:12 -0800
committer Shih-wei Liao <sliao@google.com> 2012-03-01 15:50:48 -0800
commit6edfde4ae89f3a16d22ca82c928a5dd420e9fce9 (patch)
tree79215d9e8ef82914033311c74d7a09f041276337 /src/compiler_llvm/utils_llvm.cc
parent50aaf814cc01a02c81b10a913fa161ad13c1a3b3 (diff)
Add kMips and mips32r2 target attribute. Remove NoFramePointerElim.
MIPS ICS devices today are mips32r2. Tested LLVM on MIPS devices without synci and rdhwr instructions to make sure LLVM/mips32r2 is working. Change-Id: If1db7fe268e9f3b7d27eedbacd1d55620d57612a
Diffstat (limited to 'src/compiler_llvm/utils_llvm.cc')
-rw-r--r--src/compiler_llvm/utils_llvm.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler_llvm/utils_llvm.cc b/src/compiler_llvm/utils_llvm.cc
index a924793dd1..405d7e20ad 100644
--- a/src/compiler_llvm/utils_llvm.cc
+++ b/src/compiler_llvm/utils_llvm.cc
@@ -161,7 +161,7 @@ void* find_sym(void* context, char const* name) {
}
}
- CHECK(0) << "Error: Can't find symbol " << name;
+ LOG(FATAL) << "Error: Can't find symbol " << name;
return 0;
}