Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011 Google Inc. All rights reserved. | 1 // Copyright (c) 2011 Google Inc. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 static void the_static_function() {} | 5 static void the_static_function() {} |
| 6 __attribute__((used)) void the_used_function() {} | |
| 7 | |
| 8 __attribute__((visibility("hidden"))) __attribute__((used)) | |
| 9 void the_hidden_function() {} | |
|
Mark Mentovai
2013/09/13 21:50:36
Indent so it’s clear that this is a continuation.
Nico
2013/09/13 22:05:49
Done.
| |
| 10 __attribute__((visibility("default"))) __attribute__((used)) | |
| 11 void the_visible_function() {} | |
| 12 | |
| 13 extern const int eci; | |
| 14 int i; | |
|
Mark Mentovai
2013/09/13 21:50:36
__attribute__((used))
Nico
2013/09/13 22:05:49
Done.
| |
| 15 static int si; | |
|
Mark Mentovai
2013/09/13 21:50:36
Gimme a “const int ci = something;” too, also with
Nico
2013/09/13 22:05:49
Done.
| |
| 6 | 16 |
| 7 void the_function() { | 17 void the_function() { |
| 8 the_static_function(); | 18 the_static_function(); |
| 19 the_used_function(); | |
| 20 the_hidden_function(); | |
| 21 the_visible_function(); | |
| 9 } | 22 } |
| OLD | NEW |