diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2012-04-22 11:52:41 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2012-04-22 11:52:41 +0000 |
commit | bfae1fd1fce97e73299e8ad67a22ae18de5112e9 (patch) | |
tree | 836846e49cb7e16b85c5653437efa81d43ee0a97 /lib/Target/ARM/ARMSubtarget.cpp | |
parent | a3e3481c5715c2dc9778be3450701ecc7299b24f (diff) |
ARM: Initialize the HasRAS bit.
Found by valgrind.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@155313 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/ARM/ARMSubtarget.cpp')
-rw-r--r-- | lib/Target/ARM/ARMSubtarget.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/ARM/ARMSubtarget.cpp b/lib/Target/ARM/ARMSubtarget.cpp index e247b76ad4..5be0d2b819 100644 --- a/lib/Target/ARM/ARMSubtarget.cpp +++ b/lib/Target/ARM/ARMSubtarget.cpp @@ -67,6 +67,7 @@ ARMSubtarget::ARMSubtarget(const std::string &TT, const std::string &CPU, , HasDataBarrier(false) , Pref32BitThumb(false) , AvoidCPSRPartialUpdate(false) + , HasRAS(false) , HasMPExtension(false) , FPOnlySP(false) , AllowsUnalignedMem(false) |