summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorCharles Davis <cdavis@mines.edu>2011-05-26 05:24:15 +0000
committerCharles Davis <cdavis@mines.edu>2011-05-26 05:24:15 +0000
commit329cf66e84ae73422e954d493b610aa501902d0c (patch)
tree2eff40a9abde780a38f2265b062425bf8dac72cd /include
parentfad99ae6e7ecb66eaaab3a42d6e6e97550e13349 (diff)
downloadllvm-329cf66e84ae73422e954d493b610aa501902d0c.tar.gz
llvm-329cf66e84ae73422e954d493b610aa501902d0c.tar.bz2
llvm-329cf66e84ae73422e954d493b610aa501902d0c.tar.xz
Fix definitions of UOP_SaveXMM128, UOP_SaveXMM128Big, and UOP_PushMachFrame
to match Microsoft's definitions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132112 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/Win64EH.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Support/Win64EH.h b/include/llvm/Support/Win64EH.h
index dc9156be56..8d74e10be0 100644
--- a/include/llvm/Support/Win64EH.h
+++ b/include/llvm/Support/Win64EH.h
@@ -30,7 +30,7 @@ enum UnwindOpcodes {
UOP_SetFPReg,
UOP_SaveNonVol,
UOP_SaveNonVolBig,
- UOP_SaveXMM128,
+ UOP_SaveXMM128 = 8,
UOP_SaveXMM128Big,
UOP_PushMachFrame
};