]> git.saurik.com Git - apple/ld64.git/blobdiff - unit-tests/test-cases/eh-coalescing-r/Makefile
ld64-236.3.tar.gz
[apple/ld64.git] / unit-tests / test-cases / eh-coalescing-r / Makefile
index 3fb8a254c467746d03ec54904a3ca8ab49b8aabf..e40cc53dbf03c99b6a280d0138669753213f8ab5 100644 (file)
@@ -31,13 +31,12 @@ SHELL = bash # use bash shell so we can redirect just stderr
 #
 #   <rdar://problem/5726215> comdat warnings in ld -r
 #
-#  also use -falign-functions to force an out of order coalesing  
 #
 run: all
 
 all:
        ${CXX} ${CCXXFLAGS} foo.cxx -c -o foo.o
-       ${CXX} ${CCXXFLAGS} bar.cxx -c -o bar.o -falign-functions=32
+       ${CXX} ${CCXXFLAGS} bar.cxx -c -o bar.o
        ${CXX} ${CCXXFLAGS} baz.cxx -c -o baz.o
        ${LD} -r foo.o bar.o baz.o -o foobarbaz.o 2> warnings.log
        grep warning warnings.log | ${PASS_IFF_EMPTY}