Skip to content

Commit 33f4582

Browse files
committed
[llvm] [Demangle] Fix a typo in the definition of DEMANGLE_ABI for dllimport
This fixes a typo from 04f5198, fixing building for mingw targets with dylib enabled.
1 parent ee3a771 commit 33f4582

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/include/llvm/Demangle/DemangleConfig.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
#if defined(LLVM_EXPORTS)
104104
#define DEMANGLE_ABI __declspec(dllexport)
105105
#else
106-
#define DEMANGLE_ABI__declspec(dllimport)
106+
#define DEMANGLE_ABI __declspec(dllimport)
107107
#endif
108108
#else
109109
#if __has_attribute(visibility)

0 commit comments

Comments
 (0)