Files
clang-p2996/clang/test/CodeGenObjC/builtin-constant-p.m
hyeongyu kim 1b1c8d83d3 [Clang/Test]: Rename enable_noundef_analysis to disable-noundef-analysis and turn it off by default
Turning on `enable_noundef_analysis` flag allows better codegen by removing freeze instructions.
I modified clang by renaming `enable_noundef_analysis` flag to `disable-noundef-analysis` and turning it off by default.

Test updates are made as a separate patch: D108453

Reviewed By: eugenis

Differential Revision: https://reviews.llvm.org/D105169
2022-01-16 18:54:17 +09:00

29 lines
1.0 KiB
Objective-C

// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -emit-llvm -O3 -disable-llvm-passes -o - %s | FileCheck %s
// Test that can call `__builtin_constant_p` with instances of different
// Objective-C classes.
// rdar://problem/47499250
@class Foo;
@class Bar;
extern void callee(void);
// CHECK-LABEL: define{{.*}} void @test(%0* noundef %foo, %1* noundef %bar)
void test(Foo *foo, Bar *bar) {
// CHECK: [[ADDR_FOO:%.*]] = bitcast %0* %{{.*}} to i8*
// CHECK-NEXT: call i1 @llvm.is.constant.p0i8(i8* [[ADDR_FOO]])
// CHECK: [[ADDR_BAR:%.*]] = bitcast %1* %{{.*}} to i8*
// CHECK-NEXT: call i1 @llvm.is.constant.p0i8(i8* [[ADDR_BAR]])
if (__builtin_constant_p(foo) && __builtin_constant_p(bar))
callee();
}
// Test other Objective-C types.
// CHECK-LABEL: define{{.*}} void @test_more(i8* noundef %object, i8* noundef %klass)
void test_more(id object, Class klass) {
// CHECK: call i1 @llvm.is.constant.p0i8(i8* %{{.*}})
// CHECK: call i1 @llvm.is.constant.p0i8(i8* %{{.*}})
if (__builtin_constant_p(object) && __builtin_constant_p(klass))
callee();
}