diff options
| author | 2012-03-01 15:49:12 -0800 | |
|---|---|---|
| committer | 2012-03-01 15:50:48 -0800 | |
| commit | 6edfde4ae89f3a16d22ca82c928a5dd420e9fce9 (patch) | |
| tree | 79215d9e8ef82914033311c74d7a09f041276337 /src/compiler_llvm/utils_llvm.cc | |
| parent | 50aaf814cc01a02c81b10a913fa161ad13c1a3b3 (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.cc | 2 |
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; } |