diff options
author | Chris Lattner <sabre@nondot.org> | 2003-10-18 21:08:57 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-10-18 21:08:57 +0000 |
commit | b715497a564bac60fef22d8927eff7a03ce0698c (patch) | |
tree | e4a426f9a8e8f99db37e69077331be87c2b3aeb9 /tools | |
parent | 1a28a2b76d16913fe38f47032d31620a55dcce2e (diff) | |
download | external_llvm-b715497a564bac60fef22d8927eff7a03ce0698c.zip external_llvm-b715497a564bac60fef22d8927eff7a03ce0698c.tar.gz external_llvm-b715497a564bac60fef22d8927eff7a03ce0698c.tar.bz2 |
Print -fno-strict-aliasing as well
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9243 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/bugpoint/CodeGeneratorBug.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bugpoint/CodeGeneratorBug.cpp b/tools/bugpoint/CodeGeneratorBug.cpp index 8bb3b49..d44cf57 100644 --- a/tools/bugpoint/CodeGeneratorBug.cpp +++ b/tools/bugpoint/CodeGeneratorBug.cpp @@ -259,7 +259,7 @@ bool ReduceMisCodegenFunctions::TestFuncs(const std::vector<Function*> &Funcs, #else << " -shared" // `-shared' for Linux/X86, maybe others #endif - << "\n"; + << " -fno-strict-aliasing\n"; } else { removeFile(TestModuleBC); removeFile(SafeModuleBC); |