mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-29 02:56:06 +00:00
9 lines
171 B
C
9 lines
171 B
C
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
|
|
|
|
// CHECK-LABEL: main
|
|
// CHECK: attributes #0 = {{.*}}"no-trapping-math"="true"{{.*}}
|
|
|
|
int main(void) {
|
|
return 0;
|
|
}
|