commit | 8c4ded47fbbde07e851fe428b8f2dbb7802c834f | [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 | 7c896f25f5e2da16dd955f6eaf0c4fdbdc710ce8 [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)