summaryrefslogtreecommitdiffstats
path: root/tests/run-make-fulldeps/cross-lang-lto-pgo-smoketest/cmain.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run-make-fulldeps/cross-lang-lto-pgo-smoketest/cmain.c')
-rw-r--r--tests/run-make-fulldeps/cross-lang-lto-pgo-smoketest/cmain.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/run-make-fulldeps/cross-lang-lto-pgo-smoketest/cmain.c b/tests/run-make-fulldeps/cross-lang-lto-pgo-smoketest/cmain.c
deleted file mode 100644
index e3f24828b..000000000
--- a/tests/run-make-fulldeps/cross-lang-lto-pgo-smoketest/cmain.c
+++ /dev/null
@@ -1,12 +0,0 @@
-#include <stdint.h>
-
-// A trivial function defined in Rust, returning a constant value. This should
-// always be inlined.
-uint32_t rust_always_inlined();
-
-
-uint32_t rust_never_inlined();
-
-int main(int argc, char** argv) {
- return (rust_never_inlined() + rust_always_inlined()) * 0;
-}