Merge "Workaround Clang cannot build ifunc with LTO"
diff --git a/tests/Android.bp b/tests/Android.bp
index 8a57dbb..e7273c0 100644
--- a/tests/Android.bp
+++ b/tests/Android.bp
@@ -1128,6 +1128,11 @@
 
     static_executable: true,
     stl: "libc++_static",
+    // Clang cannot build ifunc with LTO.
+    // http://b/203737712
+    lto: {
+        never: true,
+    },
 }
 
 // -----------------------------------------------------------------------------