mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-27 01:46:05 +00:00

Generate nuw GEPs for struct member accesses, as inbounds + non-negative implies nuw. Regression tests are updated using update scripts where possible, and by find + replace where not.
20 lines
663 B
C
20 lines
663 B
C
// RUN: %clang_cc1 %s -emit-llvm -o - -fblocks -triple x86_64-apple-darwin10 | FileCheck %s
|
|
|
|
typedef void (^BLOCK)(void);
|
|
int main (void)
|
|
{
|
|
_Complex double c;
|
|
BLOCK b = ^() {
|
|
_Complex double z;
|
|
z = z + c;
|
|
};
|
|
b();
|
|
}
|
|
|
|
// CHECK-LABEL: define internal void @__main_block_invoke
|
|
// CHECK: [[C1:%.*]] = alloca { double, double }, align 8
|
|
// CHECK: [[RP:%.*]] = getelementptr inbounds nuw { double, double }, ptr [[C1]], i32 0, i32 0
|
|
// CHECK-NEXT: [[R:%.*]] = load double, ptr [[RP]]
|
|
// CHECK-NEXT: [[IP:%.*]] = getelementptr inbounds nuw { double, double }, ptr [[C1]], i32 0, i32 1
|
|
// CHECK-NEXT: [[I:%.*]] = load double, ptr [[IP]]
|