llvm-6502/test/CodeGen
Daniel Jasper 7025d248eb The code that originally made me discover this is:
if ((a & 0x1) == 0x1) {
    ..
  }

In this case we don't actually have any branch probability information and
should not assume to have any. LLVM transforms this into:

  %and = and i32 %a, 1
  %tobool = icmp eq i32 %and, 0

So, in this case, the result of a bitwise and is compared against 0,
but nevertheless, we should not assume to have probability
information.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@234898 91177308-0d34-0410-b5e6-96231b3b80d8
2015-04-14 15:20:37 +00:00
..
AArch64 The code that originally made me discover this is: 2015-04-14 15:20:37 +00:00
ARM Remove this test until I figure out why it fails 2015-04-13 18:57:50 +00:00
BPF
CPP
Generic
Hexagon Revert revisions r234755, r234759, r234760 2015-04-13 17:47:15 +00:00
Inputs
Mips The code that originally made me discover this is: 2015-04-14 15:20:37 +00:00
MSP430
NVPTX Revert revisions r234755, r234759, r234760 2015-04-13 17:47:15 +00:00
PowerPC [PowerPC] Really iterate over all loops in PPCLoopDataPrefetch/PPCLoopPreIncPrep 2015-04-12 17:18:56 +00:00
R600 R600/SI: Fix verifier error caused by SIAnnotateControlFlow 2015-04-14 14:36:45 +00:00
SPARC
SystemZ Allow memory intrinsics to be tail calls 2015-04-13 17:16:45 +00:00
Thumb
Thumb2 [ARM] support for Cortex-R4/R4F 2015-04-09 14:07:28 +00:00
WinEH [WinEH] Recognize SEH finally block inserted by the frontend 2015-04-10 23:12:29 +00:00
X86 Add mtriple to test case to avoid problems with different naming schemes 2015-04-13 20:24:40 +00:00
XCore