1 /* Check if the '-fno-zero-link' flag correctly _omits_ an objc_getClass() call. */
2 /* Contributed by Ziemowit Laski <zlaski@apple.com>. */
3 /* { dg-options "-fnext-runtime -fno-zero-link" } */
4 /* { dg-do compile } */
7 #include <objc/Object.h>
9 extern void abort(void);
10 #define CHECK_IF(expr) if(!(expr)) abort();
12 @interface Base: Object
17 + (int) getValue { return 1593; }
21 int val = [Base getValue];
22 CHECK_IF(val == 1593);
26 /* { dg-final { scan-assembler "_OBJC_CLASS_REFERENCES_0" } } */
27 /* { dg-final { scan-assembler-not "objc_getClass" } } */