diff options
author | David Majnemer <david.majnemer@gmail.com> | 2013-07-04 21:17:49 +0000 |
---|---|---|
committer | David Majnemer <david.majnemer@gmail.com> | 2013-07-04 21:17:49 +0000 |
commit | 37f8f445decf3cfa53f8811db1cdc863d00bb2dd (patch) | |
tree | 018e40952d92786c34952e17fae0d43deca7d292 /llvm/test/Transforms/InstCombine/div-shift.ll | |
parent | 4a95f9eb7e9b2ffaea49d424e74099d54099ce36 (diff) | |
download | bcm5719-llvm-37f8f445decf3cfa53f8811db1cdc863d00bb2dd.tar.gz bcm5719-llvm-37f8f445decf3cfa53f8811db1cdc863d00bb2dd.zip |
InstCombine: Reimplementation of visitUDivOperand
This transform was originally added in r185257 but later removed in
r185415. The original transform would create instructions speculatively
and then discard them if the speculation was proved incorrect. This has
been replaced with a scheme that splits the transform into two parts:
preflight and fold. While we preflight, we build up fold actions that
inform the folding stage on how to act.
llvm-svn: 185667
Diffstat (limited to 'llvm/test/Transforms/InstCombine/div-shift.ll')
-rw-r--r-- | llvm/test/Transforms/InstCombine/div-shift.ll | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/test/Transforms/InstCombine/div-shift.ll b/llvm/test/Transforms/InstCombine/div-shift.ll index 6be5cc4ca11..46d0f9afd70 100644 --- a/llvm/test/Transforms/InstCombine/div-shift.ll +++ b/llvm/test/Transforms/InstCombine/div-shift.ll @@ -1,5 +1,4 @@ ; RUN: opt < %s -instcombine -S | FileCheck %s -; XFAIL: * define i32 @t1(i16 zeroext %x, i32 %y) nounwind { entry: |