diff options
Diffstat (limited to 'test/CodeGen/NVPTX/function-align.ll')
-rw-r--r-- | test/CodeGen/NVPTX/function-align.ll | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/CodeGen/NVPTX/function-align.ll b/test/CodeGen/NVPTX/function-align.ll new file mode 100644 index 0000000..e7abfb1 --- /dev/null +++ b/test/CodeGen/NVPTX/function-align.ll @@ -0,0 +1,7 @@ +; RUN: llc < %s -march=nvptx -mcpu=sm_20 | FileCheck %s + +; CHECK-NOT: .align 2 +define ptx_device void @foo() align 2 { +; CHECK-LABEL: .func foo + ret void +} |