Use bcinfo::writeAndroidBitcodeWrapper().

Change-Id: Ic5361ef718733dd22fd732351a711c04edb12e3a
diff --git a/slang_version.h b/slang_version.h
index bea18a4..6ca87bf 100644
--- a/slang_version.h
+++ b/slang_version.h
@@ -1,5 +1,5 @@
 /*
- * Copyright 2011, The Android Open Source Project
+ * Copyright 2011-2012, The Android Open Source Project
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -30,4 +30,15 @@
 
 #define SLANG_ICS_TARGET_API 14
 
+// SlangVersion refers to the released compiler version (for which certain
+// behaviors could change - i.e. critical bugs fixed that may require
+// additional workarounds in the backend compiler).
+namespace SlangVersion {
+enum {
+  LEGACY = 0,
+  ICS = 1400,
+  CURRENT = ICS
+};
+}  // namespace SlangVersion
+
 #endif  // _FRAMEWORKS_COMPILE_SLANG_SLANG_VERSION_H_  NOLINT