mirror of
https://github.com/intel/llvm.git
synced 2026-01-22 06:19:46 +08:00
Summary: Imported small internal tests: - fallthrough-to-noop.test (cherry picked from FBD32158100)
15 lines
146 B
C
15 lines
146 B
C
// Test identical code folding handling.
|
|
#include <stdio.h>
|
|
|
|
int foo() {
|
|
return 0;
|
|
}
|
|
|
|
int bar() {
|
|
return 0;
|
|
}
|
|
|
|
int main() {
|
|
return foo();
|
|
}
|