aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimur Iskhodzhanov <timurrrr@google.com>2013-02-19 10:50:44 +0000
committerTimur Iskhodzhanov <timurrrr@google.com>2013-02-19 10:50:44 +0000
commitaad3fa661914ac90e64f7eafb72f848e9bd117cd (patch)
tree530b3f52a3400d5529c99b2ea4e912220310d96e
parentd78967088c02b69166810cffae5471bccea91ca3 (diff)
Add the missing 'static' keyword to the test
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@175502 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGenCXX/microsoft-abi-default-cc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGenCXX/microsoft-abi-default-cc.cpp b/test/CodeGenCXX/microsoft-abi-default-cc.cpp
index d0d25ce5ef..7f2fc0a89d 100644
--- a/test/CodeGenCXX/microsoft-abi-default-cc.cpp
+++ b/test/CodeGenCXX/microsoft-abi-default-cc.cpp
@@ -28,8 +28,8 @@ public:
void baz();
void METHOD_CC qux();
- void static_baz();
- void __cdecl static_qux();
+ static void static_baz();
+ static void __cdecl static_qux();
};
void METHOD_CC A::baz() {}