commit | 7b4d31176efe6894bcfaa05257dd5783acda5ddc | [log] [tgz] |
---|---|---|
author | Evan Cheng <evan.cheng@apple.com> | Wed Aug 11 07:17:46 2010 +0000 |
committer | Evan Cheng <evan.cheng@apple.com> | Wed Aug 11 07:17:46 2010 +0000 |
tree | de0b529d4c27ad838d16439ad33a01379342b6a0 | |
parent | 8d62e713ea8c1597cc81da029a79925cbb125f4c [diff] [blame] |
Report error if codegen tries to instantiate a ARM target when the cpu does support it. e.g. cortex-m* processors. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110798 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/ARM/ARMSubtarget.cpp b/lib/Target/ARM/ARMSubtarget.cpp index db50c9f..b4eb83e 100644 --- a/lib/Target/ARM/ARMSubtarget.cpp +++ b/lib/Target/ARM/ARMSubtarget.cpp
@@ -36,6 +36,7 @@ , SlowFPBrcc(false) , IsThumb(isT) , ThumbMode(Thumb1) + , NoARM(false) , PostRAScheduler(false) , IsR9Reserved(ReserveR9) , UseMovt(UseMOVT)