diff options
author | Karl Schimpf <kschimpf@google.com> | 2013-09-16 08:34:40 -0700 |
---|---|---|
committer | Karl Schimpf <kschimpf@google.com> | 2013-09-16 08:34:40 -0700 |
commit | 1d241cef755d5a129d3f17117c559a70ecaa0e0c (patch) | |
tree | 6d99a026b45fe78209be7ff5b7bd5dace3f66742 | |
parent | f8cb03fe2634ee927b3b6aa6ecbdd824cd0bc940 (diff) |
Generate PNaCl bitcode files using version 2.
BUG= https://code.google.com/p/nativeclient/issues/detail?id=3590
R=mseaborn@chromium.org
Review URL: https://codereview.chromium.org/23974004
-rw-r--r-- | lib/Bitcode/NaCl/Writer/NaClBitcodeWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Bitcode/NaCl/Writer/NaClBitcodeWriter.cpp b/lib/Bitcode/NaCl/Writer/NaClBitcodeWriter.cpp index cd4a894ef0..dc9ebaddc2 100644 --- a/lib/Bitcode/NaCl/Writer/NaClBitcodeWriter.cpp +++ b/lib/Bitcode/NaCl/Writer/NaClBitcodeWriter.cpp @@ -38,7 +38,7 @@ using namespace llvm; static cl::opt<unsigned> PNaClVersion("pnacl-version", cl::desc("Specify PNaCl bitcode version to write"), - cl::init(1)); + cl::init(2)); /// These are manifest constants used by the bitcode writer. They do /// not need to be kept in sync with the reader, but need to be |