diff options
author | Elliott Hughes <enh@google.com> | 2019-07-12 22:40:45 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2019-07-12 22:40:45 -0700 |
commit | b22dcfe05cc526fd56758c42cc2f7f29701c3179 (patch) | |
tree | 1210bf8b8c2d3955662f1c62566441154358cc2b /cc/config/x86_device.go | |
parent | bc53fefd6ab4ab36e7fc9d996092e020e3843575 (diff) | |
download | build_soong-b22dcfe05cc526fd56758c42cc2f7f29701c3179.tar.gz build_soong-b22dcfe05cc526fd56758c42cc2f7f29701c3179.tar.bz2 build_soong-b22dcfe05cc526fd56758c42cc2f7f29701c3179.zip |
Stop defining unused USE_SSSE3.
This copy & paste has even made it into the fuchsia configuration...
Test: builds
Change-Id: If22615fdf04448c058db014d93155e6264fb3eb2
Diffstat (limited to 'cc/config/x86_device.go')
-rw-r--r-- | cc/config/x86_device.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cc/config/x86_device.go b/cc/config/x86_device.go index 65047588..64392dc8 100644 --- a/cc/config/x86_device.go +++ b/cc/config/x86_device.go @@ -82,7 +82,7 @@ var ( } x86ArchFeatureCflags = map[string][]string{ - "ssse3": []string{"-DUSE_SSSE3", "-mssse3"}, + "ssse3": []string{"-mssse3"}, "sse4": []string{"-msse4"}, "sse4_1": []string{"-msse4.1"}, "sse4_2": []string{"-msse4.2"}, |