diff options
author | Evan Cheng <evan.cheng@apple.com> | 2010-05-13 20:14:58 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2010-05-13 20:14:58 +0000 |
commit | 1e5a6c46b8f8cca0e4e6d582289bfd13cb462e39 (patch) | |
tree | 659d68fb1c1645efbd0992704ffcf53858ee2cde | |
parent | c4ca40eb5e632c5700fecc12ca02064429b842b0 (diff) |
80 col violation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103733 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Target/TargetLowering.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/Target/TargetLowering.h b/include/llvm/Target/TargetLowering.h index 46300e11f5..dbd56d466d 100644 --- a/include/llvm/Target/TargetLowering.h +++ b/include/llvm/Target/TargetLowering.h @@ -1593,7 +1593,8 @@ private: /// non-legal value types are not described here. /// This array is accessed using VT.getSimpleVT(), so it is subject to /// the MVT::MAX_ALLOWED_VALUETYPE * 2 bits. - uint64_t OpActions[MVT::MAX_ALLOWED_VALUETYPE/(sizeof(uint64_t)*4)][ISD::BUILTIN_OP_END]; + uint64_t OpActions[MVT::MAX_ALLOWED_VALUETYPE/(sizeof(uint64_t)*4)] + [ISD::BUILTIN_OP_END]; /// LoadExtActions - For each load of load extension type and each value type, /// keep a LegalizeAction that indicates how instruction selection should deal |