blob: e73a3ad8dfcee5887ecf5b4c2d80a0df9fac5665 [file] [log] [blame]
David Chisnall5f3c1632012-02-18 16:12:34 +00001// RUN: %clang_cc1 -triple=i386-pc-solaris2.11 -w -emit-llvm %s -o - | FileCheck %s
2
3#pragma redefine_extname fake real
4#pragma redefine_extname name alias
5
6extern int fake(void);
7
8int name;
9
10// __PRAGMA_REDEFINE_EXTNAME should be defined. This will fail if it isn't...
11int fish() { return fake() + __PRAGMA_REDEFINE_EXTNAME + name; }
12// Check that the call to fake() is emitted as a call to real()
13// CHECK: call i32 @real()
14// Check that this also works with variables names
15// CHECK: load i32* @alias