Home | History | Annotate | Download | only in X86
      1 # RUN: llc -o - %s -mtriple=x86_64-- -run-pass=none | FileCheck %s
      2 ---
      3 # Check that branch probabilities are printed correctly as hex numbers.
      4 # CHECK-LABEL: name: test
      5 # CHECK: bb.0:
      6 # CHECK-NEXT: successors: %bb.1(0x66666666), %bb.2(0x1999999a)
      7 name: test
      8 body: |
      9   bb.0:
     10     successors: %bb.1(4), %bb.2(1)
     11     JE_1 %bb.2, implicit undef $eflags
     12 
     13   bb.1:
     14     NOOP
     15 
     16   bb.2:
     17     RETQ undef $eax
     18 ...
     19