Merge from mainline (157519:158021).
[official-gcc/graphite-test-results.git] / gcc / testsuite / objc.dg / zero-link-1.m
blob35cabfaf5defd4dd4b0c8d292b3d0f5fd6a904a6
1 /* Check if the '-fzero-link' flag correctly emits an objc_getClass() call. */
2 /* Contributed by Ziemowit Laski <zlaski@apple.com>.  */
4 /* { dg-do compile { target *-*-darwin*  } } */
5 /* { dg-skip-if "" { *-*-* } { "-fgnu-runtime" } { "" } } */
6 /* { dg-options "-fzero-link" } */
8 #include "../objc-obj-c++-shared/Object1.h"
9 #include <objc/objc.h>
11 extern void abort(void);
12 #define CHECK_IF(expr) if(!(expr)) abort();
14 @interface Base: Object
15 + (int) getValue;
16 @end
18 @implementation Base
19 + (int) getValue { return 1593; }
20 @end
22 int main(void) {
23   int val = [Base getValue];
24   CHECK_IF(val == 1593);
25   return 0;
28 /* { dg-final { scan-assembler-not "_OBJC_CLASS_REFERENCES_0" } } */
29 /* { dg-final { scan-assembler "objc_getClass" } } */