Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(59)

Side by Side Diff: test/Driver/malign-double.c

Issue 1310173005: Support -malign-double option (Closed) Base URL: https://chromium.googlesource.com/a/native_client/pnacl-clang.git@master
Patch Set: Code review feedback Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « lib/Driver/Tools.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // RUN: %clang -### -c -malign-double %s -target i686-unknown-linux 2>&1 \
2 // RUN: | FileCheck --check-prefix=CHECK-I686 %s
3
4 // CHECK-I686: -cc1
5 // CHECK-I686: +align-double
6 // CHECK-I686: "-mllvm" "-malign-double"
7
8 // RUN: %clang -### -c -malign-double %s -target x86-64-unknown-linux 2>&1 \
9 // RUN: | FileCheck -check-prefix=CHECK-X86_64 %s
10
11 // CHECK-X86_64: -cc1
12 // CHECK-X86_64-NOT: +align-double
13 // CHECK-X86_64-NOT: "-mllvm" "-malign-double"
OLDNEW
« no previous file with comments | « lib/Driver/Tools.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698