Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / Modules / prebuilt-module.m
blobd46678392f4e975a4d10924eb788a1f882d2fda1
1 // RUN: rm -rf %t
2 //
3 // RUN: %clang_cc1 -fmodules -x objective-c -I %S/Inputs/prebuilt-module -emit-module %S/Inputs/prebuilt-module/module.modulemap -fmodule-name=prebuilt -o %t/prebuilt.pcm
4 // RUN: %clang_cc1 -fmodules -fprebuilt-module-path=%t/ -fdisable-module-hash %s -verify
6 // expected-no-diagnostics
7 @import prebuilt;
8 int test(void) {
9   return a;