This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: lib/CodeGen/CGDecl.cpp | |
=================================================================== | |
--- lib/CodeGen/CGDecl.cpp (revision 222615) | |
+++ lib/CodeGen/CGDecl.cpp (working copy) | |
@@ -518,7 +518,24 @@ | |
->setDoesNotThrow(); | |
} | |
}; | |
+ | |
+ /// A cleanup to call @llvm.invariant.end. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/util/IMdkit/Makefile.am b/util/IMdkit/Makefile.am | |
index e3946d7..8a3714c 100644 | |
--- a/util/IMdkit/Makefile.am | |
+++ b/util/IMdkit/Makefile.am | |
@@ -29,6 +29,7 @@ libIMdkit_la_SOURCES = \ | |
i18nIc.c \ | |
i18nIMProto.c \ | |
i18nMethod.c \ | |
+ i18nOffsetCache.c \ | |
i18nPtHdr.c \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <speex/speex.h> | |
#include <iostream> | |
#include <fstream> | |
#include <vector> | |
#include <iterator> | |
#include <cassert> | |
int main(int argc, char const *argv[]) | |
{ | |
if (argc < 2) |