diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2009-05-23 19:51:43 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2009-05-23 19:51:43 +0000 |
commit | 6d7d2aa38a247426e2ccf53e3c6ad0315c9a4d8c (patch) | |
tree | df27b9486511b106296ee53d7634a8cf659df09c /lib/Target/ARM/ARMSubtarget.cpp | |
parent | 88ce667003a33e008d9ecc6811584681787e8150 (diff) |
Add ARMv7 architecture, Cortex processors and different FPU modes handling.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72337 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMSubtarget.cpp')
-rw-r--r-- | lib/Target/ARM/ARMSubtarget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMSubtarget.cpp b/lib/Target/ARM/ARMSubtarget.cpp index 7379f1c39d..edeea2ef87 100644 --- a/lib/Target/ARM/ARMSubtarget.cpp +++ b/lib/Target/ARM/ARMSubtarget.cpp @@ -18,7 +18,7 @@ using namespace llvm; ARMSubtarget::ARMSubtarget(const Module &M, const std::string &FS, bool thumb) : ARMArchVersion(V4T) - , HasVFP2(false) + , ARMFPUType(None) , IsThumb(thumb) , UseThumbBacktraces(false) , IsR9Reserved(false) |