mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 06:56:06 +00:00

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
12 lines
293 B
C++
12 lines
293 B
C++
// RUN: %clang_cc1 -std=c++11 -triple x86_64-apple-darwin11.0.0 -emit-llvm -o - %s | FileCheck %s
|
|
|
|
enum MyEnum : char;
|
|
void bar(MyEnum value) { }
|
|
|
|
// CHECK-LABEL: define{{.*}} void @_Z3foo6MyEnum
|
|
void foo(MyEnum value)
|
|
{
|
|
// CHECK: call void @_Z3bar6MyEnum(i8 noundef signext
|
|
bar(value);
|
|
}
|