1; REQUIRES: asserts
2; RUN: not --crash llc -opaque-pointers -mtriple=powerpc64le-unknown-unknown \
3; RUN:   < %s 2>&1 | FileCheck %s
4; RUN: not --crash llc -opaque-pointers -mtriple=powerpc64-unknown-unknown \
5; RUN:   < %s 2>&1 | FileCheck %s
6
7; CHECK: Assertion{{.*}}VT.isInteger() && Operand.getValueType().isInteger() && "Invalid ANY_EXTEND!"
8
9define float @bar(float* %fp) {
10entry:
11  %0 = load atomic float, float* %fp acquire, align 4
12  ret float %0
13}
14