aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/symbols.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/symbols.cpp')
-rw-r--r--test/symbols.cpp21
1 files changed, 0 insertions, 21 deletions
diff --git a/test/symbols.cpp b/test/symbols.cpp
deleted file mode 100644
index 7ace3bb..0000000
--- a/test/symbols.cpp
+++ /dev/null
@@ -1,21 +0,0 @@
-namespace foobar_ns {
-
-int exit_code = 1;
-
-int __declspec(noinline) baz() {
- return exit_code;
-}
-
-int __declspec(noinline) bar() {
- return baz() * 2;
-}
-
-int __declspec(noinline) foo() {
- return bar() * 2;
-}
-
-} // namespace foobar_ns
-
-int main() {
- return foobar_ns::foo() * 2;
-}