Skip to content

Commit

Permalink
Relaxed over-zealous alignment requirement for VEX-encoded AES instru…
Browse files Browse the repository at this point in the history
…ctions

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@228953 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
RKSimon committed Feb 12, 2015
1 parent 5513166 commit 00481c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Target/X86/X86InstrInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -829,8 +829,8 @@ X86InstrInfo::X86InstrInfo(X86Subtarget &STI)
// AES foldable instructions
{ X86::AESIMCrr, X86::AESIMCrm, TB_ALIGN_16 },
{ X86::AESKEYGENASSIST128rr, X86::AESKEYGENASSIST128rm, TB_ALIGN_16 },
{ X86::VAESIMCrr, X86::VAESIMCrm, TB_ALIGN_16 },
{ X86::VAESKEYGENASSIST128rr, X86::VAESKEYGENASSIST128rm, TB_ALIGN_16 }
{ X86::VAESIMCrr, X86::VAESIMCrm, 0 },
{ X86::VAESKEYGENASSIST128rr, X86::VAESKEYGENASSIST128rm, 0 }
};

for (unsigned i = 0, e = array_lengthof(OpTbl1); i != e; ++i) {
Expand Down

0 comments on commit 00481c2

Please sign in to comment.