http://llvm.org/bugs/show_bug.cgi?id=8139

           Summary: RFE: opt should strip optsize bit with some options
           Product: libraries
           Version: trunk
          Platform: PC
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P
         Component: Archive library
        AssignedTo: [email protected]
        ReportedBy: [email protected]
                CC: [email protected]


I think it makes sense for:
--
$ clang -c -Os -flto -o t.bc t.c
$ opt -O3 -o t2.bc t.bc
--
to produce something as close as possible to:
--
$ clang -c -O3 -flto -o t.bc t.c
--
For this to work properly, opt should be stripping the optsize bit off of
functions except when it is run with the optimize size options.

-- 
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to