Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenObjC / property-type-mismatch.m
blobe0a39dbe51be61eff73c0a04ebf95146c47d3b53
1 // RUN: %clang_cc1 -triple x86_64-apple-darwin10  -emit-llvm -o - %s | FileCheck %s
3 @interface Foo
4 -(float)myfo;
5 -(void)setMyfo: (int)p;
6 @end
8 void bar(Foo *x) {
9   x.myfo++;
12 // CHECK: [[C1:%.*]] = call float @objc_msgSend
13 // CHECK: [[I:%.*]] = fadd float [[C1]], 1.000000e+00
14 // CHECK: [[CONV:%.*]] = fptosi float [[I]] to i32
15 // CHECK: [[T3:%.*]] = load ptr, ptr @OBJC_SELECTOR_REFERENCES_.2
16 // CHECK:  call void @objc_msgSend