Chromium Code Reviews| Index: test/win/compiler_flags/function_level_linking.cc |
| diff --git a/test/win/compiler_flags/function_level_linking.cc b/test/win/compiler_flags/function_level_linking.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..17d1d1011616ba1bf8b845a188ff74d9492b0fe7 |
| --- /dev/null |
| +++ b/test/win/compiler_flags/function_level_linking.cc |
| @@ -0,0 +1,11 @@ |
| +// Copyright (c) 2012 Google Inc. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +int stripped_function() { |
| + return 1; |
| +} |
| + |
| +int main() { |
| + return 0; |
| +} |